StdoutLogInterface.php 180 B

12345678910111213
  1. <?php
  2. declare(strict_types=1);
  3. namespace App\Kernel;
  4. class StdoutLogInterface
  5. {
  6. public $log;
  7. public function __construct(){
  8. $this->log = Log::get('sys');
  9. }
  10. }