%PDF-1.5 %���� ºaâÚÎΞ-ÌE1ÍØÄ÷{òò2ÿ ÛÖ^ÔÀá TÎ{¦?§®¥kuµùÕ5sLOšuY
Server IP : 49.231.201.246 / Your IP : 216.73.216.149 Web Server : Apache/2.4.18 (Ubuntu) System : Linux 246 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64 User : root ( 0) PHP Version : 7.0.33-0ubuntu0.16.04.16 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,pcntl_exec MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/html/water/vendor/yiisoft/yii2-debug/src/models/ |
Upload File : |
<?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\debug\models; use yii\base\Model; use yii\log\Logger; /** * Router model * * @author Dmitriy Bashkarev <dmitriy@bashkarev.com> * @since 2.0.8 */ class Router extends Model { /** * @var array logged messages. */ public $messages = []; /** * @var string logged route. */ public $route = ''; /** * @var string logged action. */ public $action = ''; /** * @var string|null info message. */ public $message; /** * @var array logged rules. * ```php * [ * [ * 'rule' => (string), * 'match' => (bool), * 'parent'=> parent class (string) * ] * ] * ``` */ public $logs = []; /** * @var int count, before match. */ public $count = 0; /** * @var bool */ public $hasMatch = false; /** * {@inheritdoc} */ public function init() { parent::init(); $last = null; foreach ($this->messages as $message) { if ($message[1] === Logger::LEVEL_TRACE && is_string($message[0])) { $this->message = $message[0]; } elseif (isset($message[0]['rule'], $message[0]['match'])) { if (!empty($last['parent']) && $last['parent'] === $message[0]['rule']) { continue; } $this->logs[] = $message[0]; ++$this->count; if ($message[0]['match']) { $this->hasMatch = true; } $last = $message[0]; } } } }