'', 'log' => '' ]; protected function __construct() { self::$path = [ 'root' => dirname(__DIR__) . '..', 'log' => self::$path['root'] . '/log' ]; } /** * Инициализация сборщика * * @return Builder */ public function build(): Builder { return new Builder(); } /** * Активация журналирования * * @return Core * * @todo Добавить установку иного журналиста по спецификации PSR-3 */ public function log($file = null): Core { Jasmo::init()::post($file)::postErrorHandler()::postShutdownHandler(); return $this; } }