<?php declare(strict_types=1); namespace App\Kernel; class StdoutLogInterface { public $log; public function __construct(){ $this->log = Log::get('sys'); } }