| Total Complexity | 92 |
| Total Lines | 668 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
Complex classes like DebugbarLogger often do a lot of different things. To break such a class down, we need to identify a cohesive component within that class. A common approach to find such a component is to look for fields/methods that share the same prefixes, or suffixes.
Once you have determined the fields that belong together, you can apply the Extract Class refactoring. If the component makes sense as a sub-class, Extract Subclass is also a candidate, and is often faster.
While breaking up the class, it is a good idea to analyze how other classes use DebugbarLogger, and based on these observations, apply Extract Interface, too.
| 1 | <?php |
||
| 32 | class DebugbarLogger implements LoggerInterface |
||
| 33 | { |
||
| 34 | /** |
||
| 35 | * @var object |
||
| 36 | */ |
||
| 37 | private $debugbar = false; |
||
| 38 | |||
| 39 | /** |
||
| 40 | * @var object |
||
| 41 | */ |
||
| 42 | private $renderer = false; |
||
| 43 | |||
| 44 | /** |
||
| 45 | * @var object |
||
| 46 | */ |
||
| 47 | private $activated = false; |
||
| 48 | |||
| 49 | /** |
||
| 50 | * @var object |
||
| 51 | */ |
||
| 52 | private $quietmode = false; |
||
| 53 | |||
| 54 | /** |
||
| 55 | * constructor |
||
| 56 | */ |
||
| 57 | public function __construct() |
||
| 58 | { |
||
| 59 | Logger::getInstance()->addLogger($this); |
||
| 60 | } |
||
| 61 | |||
| 62 | /** |
||
| 63 | * Get a reference to the only instance of this class |
||
| 64 | * |
||
| 65 | * @return object LoggerAbstract reference to the only instance |
||
| 66 | */ |
||
| 67 | public static function getInstance() |
||
| 68 | { |
||
| 69 | static $instance; |
||
| 70 | if (!isset($instance)) { |
||
| 71 | $class = __CLASS__; |
||
| 72 | $instance = new $class(); |
||
| 73 | } |
||
| 74 | |||
| 75 | return $instance; |
||
| 76 | } |
||
| 77 | |||
| 78 | /** |
||
| 79 | * Get our debugbar object |
||
| 80 | * |
||
| 81 | * @return \DebugBar\DebugBar |
||
| 82 | */ |
||
| 83 | public function getDebugbar() |
||
| 84 | { |
||
| 85 | return $this->debugbar; |
||
| 86 | } |
||
| 87 | |||
| 88 | /** |
||
| 89 | * disable logging |
||
| 90 | * |
||
| 91 | * @return void |
||
| 92 | */ |
||
| 93 | public function disable() |
||
| 94 | { |
||
| 95 | //error_reporting(0); |
||
| 96 | $this->activated = false; |
||
|
|
|||
| 97 | } |
||
| 98 | |||
| 99 | /** |
||
| 100 | * Enable logger output rendering |
||
| 101 | * When output rendering is enabled, the logger will insert its output within the page content. |
||
| 102 | * If the string <!--<xo-logger-output>--> is found in the page content, the logger output will |
||
| 103 | * replace it, otherwise it will be inserted after all the page output. |
||
| 104 | * |
||
| 105 | * @return void |
||
| 106 | */ |
||
| 107 | public function enable() |
||
| 108 | { |
||
| 109 | error_reporting(-1); |
||
| 110 | |||
| 111 | $this->activated = true; |
||
| 112 | |||
| 113 | $this->enableRendering(); |
||
| 114 | |||
| 115 | if (!$this->debugbar) { |
||
| 116 | $this->debugbar = new StandardDebugBar(); |
||
| 117 | $this->renderer = $this->debugbar->getJavascriptRenderer(); |
||
| 118 | |||
| 119 | //$this->debugbar->addCollector(new MessagesCollector('Errors')); |
||
| 120 | $this->debugbar->addCollector(new MessagesCollector('Deprecated')); |
||
| 121 | $this->debugbar->addCollector(new MessagesCollector('Blocks')); |
||
| 122 | $this->debugbar->addCollector(new MessagesCollector('Extra')); |
||
| 123 | //$this->debugbar->addCollector(new MessagesCollector('Queries')); |
||
| 124 | |||
| 125 | $xoops = Xoops::getInstance(); |
||
| 126 | $debugStack = $xoops->db()->getConfiguration()->getSQLLogger(); |
||
| 127 | $this->debugbar->addCollector(new DebugBar\Bridge\DoctrineCollector($debugStack)); |
||
| 128 | //$this->debugbar->setStorage(new DebugBar\Storage\FileStorage(\XoopsBaseConfig::get('var-path').'/debugbar')); |
||
| 129 | } |
||
| 130 | $this->addToTheme(); |
||
| 131 | } |
||
| 132 | |||
| 133 | /** |
||
| 134 | * report enabled status |
||
| 135 | * |
||
| 136 | * @return bool |
||
| 137 | */ |
||
| 138 | public function isEnable() |
||
| 139 | { |
||
| 140 | return $this->activated; |
||
| 141 | } |
||
| 142 | |||
| 143 | /** |
||
| 144 | * disable output for the benefit of ajax scripts |
||
| 145 | * |
||
| 146 | * @return void |
||
| 147 | */ |
||
| 148 | public function quiet() |
||
| 149 | { |
||
| 150 | //$this->debugbar->sendDataInHeaders(); |
||
| 151 | $this->quietmode = true; |
||
| 152 | } |
||
| 153 | |||
| 154 | /** |
||
| 155 | * Add our resources to the theme as soon as it is available, otherwise return |
||
| 156 | * |
||
| 157 | * @return void |
||
| 158 | */ |
||
| 159 | private function addToTheme() |
||
| 160 | { |
||
| 161 | static $addedResource = false; |
||
| 162 | |||
| 163 | if ($this->activated && !$addedResource) { |
||
| 164 | if (isset($GLOBALS['xoTheme'])) { |
||
| 165 | // get asset information provided by debugbar |
||
| 166 | // don't include vendors - jquery already available, need workaround for font-awesome |
||
| 167 | $this->renderer->setIncludeVendors(true); |
||
| 168 | $this->renderer->setEnableJqueryNoConflict(false); |
||
| 169 | list($cssAssets, $jsAssets) = $this->renderer->getAssets(); |
||
| 170 | |||
| 171 | // font-awesome requires some special handling with cssmin |
||
| 172 | // see: https://code.google.com/p/cssmin/issues/detail?id=52&q=font |
||
| 173 | // using our own copy of full css instead of minified version packaged |
||
| 174 | // with debugbar avoids the issue. |
||
| 175 | |||
| 176 | // Supress unwanted assets - exclude anything containing these strings |
||
| 177 | $excludes = array( |
||
| 178 | //'/vendor/font-awesome/', // font-awesome needs special process |
||
| 179 | //'/vendor/highlightjs/', // highlightjs has some negative side effects |
||
| 180 | '/vendor/jquery/', // jquery is already available |
||
| 181 | ); |
||
| 182 | |||
| 183 | $cssAssets = array_filter( |
||
| 184 | $cssAssets, |
||
| 185 | function ($filename) use ($excludes) { |
||
| 186 | foreach ($excludes as $exclude) { |
||
| 187 | if (false !== strpos($filename, $exclude)) { |
||
| 188 | return false; |
||
| 189 | } |
||
| 190 | } |
||
| 191 | return true; |
||
| 192 | } |
||
| 193 | ); |
||
| 194 | |||
| 195 | $jsAssets = array_filter( |
||
| 196 | $jsAssets, |
||
| 197 | function ($filename) use ($excludes) { |
||
| 198 | foreach ($excludes as $exclude) { |
||
| 199 | if (false !== strpos($filename, $exclude)) { |
||
| 200 | return false; |
||
| 201 | } |
||
| 202 | } |
||
| 203 | return true; |
||
| 204 | } |
||
| 205 | ); |
||
| 206 | //$cssAssets[] = 'modules/debugbar/assets/css/font-awesome.css'; |
||
| 207 | |||
| 208 | $xoops = Xoops::getInstance(); |
||
| 209 | $xoops->theme()->addStylesheetAssets($cssAssets, 'cssembed,?cssmin'); |
||
| 210 | $xoops->theme()->addScriptAssets($jsAssets, '?jsmin'); |
||
| 211 | |||
| 212 | $addedResource = true; |
||
| 213 | } |
||
| 214 | } |
||
| 215 | } |
||
| 216 | |||
| 217 | /** |
||
| 218 | * Start a timer |
||
| 219 | * |
||
| 220 | * @param string $name name of the timer |
||
| 221 | * @param string|null $label optional label for this timer |
||
| 222 | * |
||
| 223 | * @return void |
||
| 224 | */ |
||
| 225 | public function startTime($name = 'XOOPS', $label = null) |
||
| 226 | { |
||
| 227 | if ($this->activated) { |
||
| 228 | try { |
||
| 229 | $this->debugbar['time']->startMeasure($name, $label); |
||
| 230 | } catch (Throwable $e) { |
||
| 231 | $this->addException($e); |
||
| 232 | } |
||
| 233 | } |
||
| 234 | } |
||
| 235 | |||
| 236 | /** |
||
| 237 | * Stop a timer |
||
| 238 | * |
||
| 239 | * @param string $name name of the timer |
||
| 240 | * |
||
| 241 | * @return void |
||
| 242 | */ |
||
| 243 | public function stopTime($name = 'XOOPS') |
||
| 244 | { |
||
| 245 | $this->addToTheme(); |
||
| 246 | |||
| 247 | if ($this->activated) { |
||
| 248 | try { |
||
| 249 | $this->debugbar['time']->stopMeasure($name); |
||
| 250 | } catch (Throwable $e) { |
||
| 251 | $this->addException($e); |
||
| 252 | } |
||
| 253 | } |
||
| 254 | } |
||
| 255 | |||
| 256 | /** |
||
| 257 | * Log a database query |
||
| 258 | * |
||
| 259 | * @param string $sql sql that was processed |
||
| 260 | * @param string $error error message |
||
| 261 | * @param int $errno error number |
||
| 262 | * @param float $query_time execution time |
||
| 263 | * |
||
| 264 | * @return void |
||
| 265 | */ |
||
| 266 | public function addQuery($sql, $error = null, $errno = null, $query_time = null) |
||
| 267 | { |
||
| 268 | if ($this->activated) { |
||
| 269 | $level = LogLevel::INFO; |
||
| 270 | if (!empty($error)) { |
||
| 271 | $level = LogLevel::ERROR; |
||
| 272 | } |
||
| 273 | $context = array( |
||
| 274 | 'channel'=>'Queries', |
||
| 275 | 'error'=>$error, |
||
| 276 | 'errno'=>$errno, |
||
| 277 | 'query_time'=>$query_time |
||
| 278 | ); |
||
| 279 | $this->log($level, $sql, $context); |
||
| 280 | } |
||
| 281 | } |
||
| 282 | |||
| 283 | /** |
||
| 284 | * Log display of a block |
||
| 285 | * |
||
| 286 | * @param string $name name of the block |
||
| 287 | * @param bool $cached was the block cached? |
||
| 288 | * @param int $cachetime cachetime of the block |
||
| 289 | * |
||
| 290 | * @return void |
||
| 291 | */ |
||
| 292 | public function addBlock($name, $cached = false, $cachetime = 0) |
||
| 293 | { |
||
| 294 | if ($this->activated) { |
||
| 295 | $context = array('channel'=>'Blocks', 'cached'=>$cached, 'cachetime'=>$cachetime); |
||
| 296 | $this->log(LogLevel::INFO, $name, $context); |
||
| 297 | } |
||
| 298 | } |
||
| 299 | |||
| 300 | /** |
||
| 301 | * Log extra information |
||
| 302 | * |
||
| 303 | * @param string $name name for the entry |
||
| 304 | * @param string $msg text message for the entry |
||
| 305 | * |
||
| 306 | * @return void |
||
| 307 | */ |
||
| 308 | public function addExtra($name, $msg) |
||
| 309 | { |
||
| 310 | if ($this->activated) { |
||
| 311 | $context = array('channel'=>'Extra', 'name'=>$name); |
||
| 312 | $this->log(LogLevel::INFO, $msg, $context); |
||
| 313 | } |
||
| 314 | } |
||
| 315 | |||
| 316 | /** |
||
| 317 | * Log messages for deprecated functions |
||
| 318 | * |
||
| 319 | * @param string $msg name for the entry |
||
| 320 | * |
||
| 321 | * @return void |
||
| 322 | */ |
||
| 323 | public function addDeprecated($msg) |
||
| 324 | { |
||
| 325 | if ($this->activated) { |
||
| 326 | $this->log(LogLevel::WARNING, $msg, array('channel'=>'Deprecated')); |
||
| 327 | } |
||
| 328 | } |
||
| 329 | |||
| 330 | /** |
||
| 331 | * Log exceptions |
||
| 332 | * |
||
| 333 | * @param Exception $e name for the entry |
||
| 334 | * |
||
| 335 | * @return void |
||
| 336 | */ |
||
| 337 | public function addException($e) |
||
| 338 | { |
||
| 339 | if ($this->activated) { |
||
| 340 | $this->debugbar['exceptions']->addThrowable($e); |
||
| 341 | } |
||
| 342 | } |
||
| 343 | |||
| 344 | /** |
||
| 345 | * Dump Smarty variables |
||
| 346 | * |
||
| 347 | * @return void |
||
| 348 | */ |
||
| 349 | public function addSmarty() |
||
| 350 | { |
||
| 351 | if ($this->activated) { |
||
| 352 | $data = Xoops::getInstance()->tpl()->getTemplateVars(); |
||
| 353 | // fix values that don't display properly |
||
| 354 | foreach ($data as $k => $v) { |
||
| 355 | if ($v === '') { |
||
| 356 | $data[$k] = '(empty string)'; |
||
| 357 | } elseif ($v === null) { |
||
| 358 | $data[$k] = 'NULL'; |
||
| 359 | } elseif ($v === true) { // just to be consistent with false |
||
| 360 | $data[$k] = 'bool TRUE'; |
||
| 361 | } elseif ($v === false) { |
||
| 362 | $data[$k] = 'bool FALSE'; |
||
| 363 | } |
||
| 364 | } |
||
| 365 | ksort($data, SORT_NATURAL | SORT_FLAG_CASE); |
||
| 366 | $this->debugbar->addCollector( |
||
| 367 | new DebugBar\DataCollector\ConfigCollector($data, 'Smarty') |
||
| 368 | ); |
||
| 369 | } |
||
| 370 | } |
||
| 371 | |||
| 372 | /** |
||
| 373 | * Dump a variable to the messages pane |
||
| 374 | * |
||
| 375 | * @param mixed $var variable to dump |
||
| 376 | * |
||
| 377 | * @return void |
||
| 378 | */ |
||
| 379 | public function dump($var) |
||
| 380 | { |
||
| 381 | $this->log(LogLevel::DEBUG, $var); |
||
| 382 | } |
||
| 383 | |||
| 384 | /** |
||
| 385 | * stackData - stash log data before a redirect |
||
| 386 | * |
||
| 387 | * @return void |
||
| 388 | */ |
||
| 389 | public function stackData() |
||
| 390 | { |
||
| 391 | if ($this->activated) { |
||
| 392 | $this->debugbar->stackData(); |
||
| 393 | $this->activated=false; |
||
| 394 | $this->renderingEnabled = false; |
||
| 395 | } |
||
| 396 | } |
||
| 397 | |||
| 398 | /** |
||
| 399 | * Enable logger output rendering |
||
| 400 | * When output rendering is enabled, the logger will insert its output within the page content. |
||
| 401 | * If the string <!--<xo-logger-output>--> is found in the page content, the logger output will |
||
| 402 | * replace it, otherwise it will be inserted after all the page output. |
||
| 403 | * |
||
| 404 | * @return void |
||
| 405 | */ |
||
| 406 | public function enableRendering() |
||
| 407 | { |
||
| 408 | $this->renderingEnabled = true; |
||
| 409 | } |
||
| 410 | |||
| 411 | /** |
||
| 412 | * Output buffering callback inserting logger dump in page output |
||
| 413 | * |
||
| 414 | * @param string $output output buffer to add logger rendering to |
||
| 415 | * |
||
| 416 | * @return string output |
||
| 417 | */ |
||
| 418 | public function render($output) |
||
| 419 | { |
||
| 420 | if (!$this->activated) { |
||
| 421 | return $output; |
||
| 422 | } |
||
| 423 | |||
| 424 | $xoops = Xoops::getInstance(); |
||
| 425 | $head = '</script>'.$this->renderer->renderHead().'<script>'; |
||
| 426 | $xoops->theme()->addScript(null, null, $head); |
||
| 427 | |||
| 428 | $log = $this->renderer->render(); |
||
| 429 | $this->renderingEnabled = $this->activated = false; |
||
| 430 | |||
| 431 | $pattern = '<!--<xo-logger-output>-->'; |
||
| 432 | $pos = strpos($output, $pattern); |
||
| 433 | if ($pos !== false) { |
||
| 434 | return substr($output, 0, $pos) . $log . substr($output, $pos + strlen($pattern)); |
||
| 435 | } else { |
||
| 436 | return $output . $log; |
||
| 437 | } |
||
| 438 | } |
||
| 439 | |||
| 440 | /** |
||
| 441 | * dump everything we have // was __destruct() |
||
| 442 | */ |
||
| 443 | public function renderDebugBar() |
||
| 444 | { |
||
| 445 | if ($this->activated) { |
||
| 446 | // include any queued time data from Xmf\Debug |
||
| 447 | $queue = \Xmf\Debug::dumpQueuedTimers(true); |
||
| 448 | if (!empty($queue)) { |
||
| 449 | foreach ($queue as $q) { |
||
| 450 | $this->debugbar['time']->addMeasure($q['label'], $q['start'], $q['start'] + $q['elapsed']); |
||
| 451 | } |
||
| 452 | } |
||
| 453 | $this->addToTheme(); |
||
| 454 | $this->addExtra(_MD_DEBUGBAR_PHP_VERSION, PHP_VERSION); |
||
| 455 | $this->addExtra(_MD_DEBUGBAR_INCLUDED_FILES, (string) count(get_included_files())); |
||
| 456 | $conn = \Xoops::getInstance()->db()->getWrappedConnection(); |
||
| 457 | if ($conn instanceof \PDO) { |
||
| 458 | $this->addExtra( |
||
| 459 | $conn->getAttribute(\PDO::ATTR_DRIVER_NAME) . ' version', |
||
| 460 | $conn->getAttribute(\PDO::ATTR_SERVER_VERSION) |
||
| 461 | ); |
||
| 462 | $this->addExtra( |
||
| 463 | $conn->getAttribute(\PDO::ATTR_DRIVER_NAME) . ' stats', |
||
| 464 | $conn->getAttribute(\PDO::ATTR_SERVER_INFO) |
||
| 465 | ); |
||
| 466 | } |
||
| 467 | |||
| 468 | if (false === $this->quietmode) { |
||
| 469 | if (isset($_SERVER['HTTP_X_REQUESTED_WITH']) |
||
| 470 | && $_SERVER['HTTP_X_REQUESTED_WITH'] === 'XMLHttpRequest') { |
||
| 471 | // default for ajax, do not initialize a new toolbar, just add dataset |
||
| 472 | $log = $this->renderer->render(false); |
||
| 473 | } else { |
||
| 474 | $log = $this->renderer->render(); |
||
| 475 | } |
||
| 476 | echo $log; |
||
| 477 | } else { |
||
| 478 | $this->debugbar->sendDataInHeaders(); |
||
| 479 | } |
||
| 480 | } |
||
| 481 | } |
||
| 482 | |||
| 483 | /** |
||
| 484 | * PSR-3 System is unusable. |
||
| 485 | * |
||
| 486 | * @param string $message message |
||
| 487 | * @param array $context array of additional context |
||
| 488 | * |
||
| 489 | * @return null |
||
| 490 | */ |
||
| 491 | public function emergency($message, array $context = array()) |
||
| 492 | { |
||
| 493 | if ($this->activated) { |
||
| 494 | $this->log(LogLevel::EMERGENCY, $message, $context); |
||
| 495 | } |
||
| 496 | } |
||
| 497 | |||
| 498 | /** |
||
| 499 | * PSR-3 Action must be taken immediately. |
||
| 500 | * |
||
| 501 | * Example: Entire website down, database unavailable, etc. This should |
||
| 502 | * trigger the SMS alerts and wake you up. |
||
| 503 | * |
||
| 504 | * @param string $message message |
||
| 505 | * @param array $context array of additional context |
||
| 506 | * |
||
| 507 | * @return null |
||
| 508 | */ |
||
| 509 | public function alert($message, array $context = array()) |
||
| 510 | { |
||
| 511 | if ($this->activated) { |
||
| 512 | $this->log(LogLevel::ALERT, $message, $context); |
||
| 513 | } |
||
| 514 | } |
||
| 515 | |||
| 516 | /** |
||
| 517 | * PSR-3 Critical conditions. |
||
| 518 | * |
||
| 519 | * Example: Application component unavailable, unexpected exception. |
||
| 520 | * |
||
| 521 | * @param string $message message |
||
| 522 | * @param array $context array of additional context |
||
| 523 | * |
||
| 524 | * @return null |
||
| 525 | */ |
||
| 526 | public function critical($message, array $context = array()) |
||
| 527 | { |
||
| 528 | if ($this->activated) { |
||
| 529 | $this->log(LogLevel::CRITICAL, $message, $context); |
||
| 530 | } |
||
| 531 | } |
||
| 532 | |||
| 533 | /** |
||
| 534 | * PSR-3 Runtime errors that do not require immediate action but should typically |
||
| 535 | * be logged and monitored. |
||
| 536 | * |
||
| 537 | * @param string $message message |
||
| 538 | * @param array $context array of additional context |
||
| 539 | * |
||
| 540 | * @return null |
||
| 541 | */ |
||
| 542 | public function error($message, array $context = array()) |
||
| 543 | { |
||
| 544 | if ($this->activated) { |
||
| 545 | $this->log(LogLevel::ERROR, $message, $context); |
||
| 546 | } |
||
| 547 | } |
||
| 548 | |||
| 549 | /** |
||
| 550 | * PSR-3 Exceptional occurrences that are not errors. |
||
| 551 | * |
||
| 552 | * Example: Use of deprecated APIs, poor use of an API, undesirable things |
||
| 553 | * that are not necessarily wrong. |
||
| 554 | * |
||
| 555 | * @param string $message message |
||
| 556 | * @param array $context array of additional context |
||
| 557 | * |
||
| 558 | * @return null |
||
| 559 | */ |
||
| 560 | public function warning($message, array $context = array()) |
||
| 561 | { |
||
| 562 | if ($this->activated) { |
||
| 563 | $this->log(LogLevel::WARNING, $message, $context); |
||
| 564 | } |
||
| 565 | } |
||
| 566 | |||
| 567 | /** |
||
| 568 | * PSR-3 Normal but significant events. |
||
| 569 | * |
||
| 570 | * @param string $message message |
||
| 571 | * @param array $context array of additional context |
||
| 572 | * |
||
| 573 | * @return null |
||
| 574 | */ |
||
| 575 | public function notice($message, array $context = array()) |
||
| 579 | } |
||
| 580 | } |
||
| 581 | |||
| 582 | /** |
||
| 583 | * PSR-3 Interesting events. |
||
| 584 | * |
||
| 585 | * Example: User logs in, SQL logs. |
||
| 586 | * |
||
| 587 | * @param string $message message |
||
| 588 | * @param array $context array of additional context |
||
| 589 | * |
||
| 590 | * @return null |
||
| 591 | */ |
||
| 592 | public function info($message, array $context = array()) |
||
| 593 | { |
||
| 594 | if ($this->activated) { |
||
| 595 | $this->log(LogLevel::INFO, $message, $context); |
||
| 596 | } |
||
| 597 | } |
||
| 598 | |||
| 599 | /** |
||
| 600 | * PSR-3 Detailed debug information. |
||
| 601 | * |
||
| 602 | * @param string $message message |
||
| 603 | * @param array $context array of additional context |
||
| 604 | * |
||
| 605 | * @return null |
||
| 606 | */ |
||
| 607 | public function debug($message, array $context = array()) |
||
| 611 | } |
||
| 612 | } |
||
| 613 | |||
| 614 | /** |
||
| 615 | * PSR-3 Logs with an arbitrary level. |
||
| 616 | * |
||
| 617 | * @param mixed $level logging level |
||
| 618 | * @param string $message message |
||
| 619 | * @param array $context array of additional context |
||
| 620 | * |
||
| 621 | * @return null |
||
| 622 | */ |
||
| 623 | public function log($level, $message, array $context = array()) |
||
| 624 | { |
||
| 625 | if (!$this->activated) { |
||
| 626 | return; |
||
| 627 | } |
||
| 628 | |||
| 629 | $channel = 'messages'; |
||
| 630 | $msg = $message; |
||
| 700 | } |
||
| 701 | } |
||
| 702 | } |
||
| 703 |
Our type inference engine has found an assignment to a property that is incompatible with the declared type of that property.
Either this assignment is in error or the assigned type should be added to the documentation/type hint for that property..