FIX: Error observado
This commit is contained in:
@ -15,13 +15,15 @@ class FastCGI implements LoggerAwareInterface
|
|||||||
$this->client = new FCGI\Client();
|
$this->client = new FCGI\Client();
|
||||||
}
|
}
|
||||||
|
|
||||||
public LoggerInterface $logger {
|
public LoggerInterface $logger;
|
||||||
get {
|
public function getLogger(): LoggerInterface
|
||||||
|
{
|
||||||
return $this->logger;
|
return $this->logger;
|
||||||
}
|
}
|
||||||
set(LoggerInterface $logger) {
|
public function setLogger(LoggerInterface $logger): self
|
||||||
$this->logger = $logger;
|
{
|
||||||
}
|
$this->logger = $logger;
|
||||||
|
return $this;
|
||||||
}
|
}
|
||||||
|
|
||||||
protected FCGI\Client $client;
|
protected FCGI\Client $client;
|
||||||
|
Reference in New Issue
Block a user