feature/cierres #31

Merged
aldarien merged 462 commits from feature/cierres into develop 2025-09-11 17:05:18 -03:00
177 changed files with 610 additions and 7713 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;