handles = $config['handles'] ?? []; $this->destination = $this->path . 'log-' . date('Y-m-d') . '.' . $this->fileExtension; self::$logs = []; } //-------------------------------------------------------------------- /** * Handles logging the message. * If the handler returns false, then execution of handlers * will stop. Any handlers that have not run, yet, will not * be run. * * @param $level * @param $message * * @return boolean */ public function handle($level, $message): bool { $date = date($this->dateFormat); self::$logs[] = strtoupper($level) . ' - ' . $date . ' --> ' . $message; return true; } //-------------------------------------------------------------------- public static function getLogs() { return self::$logs; } //-------------------------------------------------------------------- }