feature/cierres #30

Merged
aldarien merged 460 commits from feature/cierres into develop 2025-09-11 15:16:17 -03:00
117 changed files with 425 additions and 3912 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;