__construct() public method

public __construct ( Psr\Log\LoggerInterface $logger )
$logger Psr\Log\LoggerInterface
示例#1
0
 public function __construct(PsrLogger $logger, $ipcSock, Bootstrapper $bootstrapper = null)
 {
     parent::__construct($logger);
     $this->logger = $logger;
     $this->ipcSock = $ipcSock;
     $this->bootstrapper = $bootstrapper ?: new Bootstrapper();
 }
示例#2
0
 public function __construct(PsrLogger $logger)
 {
     parent::__construct($logger);
     $this->logger = $logger;
     $this->procGarbageWatcher = \Amp\repeat(function () {
         $this->collectProcessGarbage();
     }, 100, ["enable" => false]);
 }