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(); $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;