feature/cierres #25

Open
aldarien wants to merge 446 commits from feature/cierres into develop
99 changed files with 404 additions and 2863 deletions
Showing only changes of commit e265854958 - Show all commits

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) {
$this->logger = $logger;
}
}
public function setLogger(LoggerInterface $logger): self
{
$this->logger = $logger;
return $this;
}
protected FCGI\Client $client;