Файловый менеджер - Редактировать - /home/clickysoft/public_html/securebeans.clickysoft.net/vendor/bugsnag/bugsnag-laravel/src/EventTrait.php
Назад
<?php namespace Bugsnag\BugsnagLaravel; use Closure; use Illuminate\Contracts\Events\Dispatcher; use Illuminate\Log\Events\MessageLogged; use RuntimeException; trait EventTrait { /** * The event dispatcher instance. * * @var \Illuminate\Contracts\Events\Dispatcher */ protected $dispatcher; /** * Get the event dispatcher instance. * * @return \Illuminate\Contracts\Events\Dispatcher */ public function getEventDispatcher() { return $this->dispatcher; } /** * Set the event dispatcher instance. * * @param \Illuminate\Contracts\Events\Dispatcher $dispatcher * * @return void */ public function setEventDispatcher(Dispatcher $dispatcher) { $this->dispatcher = $dispatcher; } /** * Register a new callback handler for when a log event is triggered. * * @param \Closure $callback * * @throws \RuntimeException * * @return void */ public function listen(Closure $callback) { if (!isset($this->dispatcher)) { throw new RuntimeException('Events dispatcher has not been set.'); } $this->dispatcher->listen(class_exists(MessageLogged::class) ? MessageLogged::class : 'illuminate.log', $callback); } /** * Log a message to the logs. * * @param string $level * @param mixed $message * @param array $context * * @return void */ public function log($level, $message, array $context = []) { parent::log($level, $message, $context); $this->fireLogEvent($level, $message, $context); } /** * Fires a log event. * * @param string $level * @param string $message * @param array $context * * @return void */ protected function fireLogEvent($level, $message, array $context = []) { // If the event dispatcher is set, we will pass along the parameters to the // log listeners. These are useful for building profilers or other tools // that aggregate all of the log messages for a given "request" cycle. if (!isset($this->dispatcher)) { return; } if (class_exists(MessageLogged::class)) { $this->dispatcher->dispatch(new MessageLogged($level, $message, $context)); } else { $this->dispatcher->fire('illuminate.log', compact('level', 'message', 'context')); } } }
| ver. 1.4 |
Github
|
.
| PHP 8.1.29 | Генерация страницы: 0 |
proxy
|
phpinfo
|
Настройка