FIX: Error observado

This commit is contained in:
Juan Pablo Vial
2025-06-27 17:21:25 -04:00
parent 174b29efff
commit e265854958

View File

@ -15,13 +15,15 @@ class FastCGI implements LoggerAwareInterface
$this->client = new FCGI\Client();
}
public LoggerInterface $logger {
get {
public LoggerInterface $logger;
public function getLogger(): LoggerInterface
{
return $this->logger;
}
set(LoggerInterface $logger) {
public function setLogger(LoggerInterface $logger): self
{
$this->logger = $logger;
}
return $this;
}
protected FCGI\Client $client;