We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c0ec3cf commit df3d303Copy full SHA for df3d303
src/Panel/RoutesPanel.php
@@ -32,7 +32,7 @@ class RoutesPanel extends DebugPanel
32
public function summary()
33
{
34
$routes = array_filter(Router::routes(), function ($route) {
35
- return (!isset($routes->defaults['plugin'])) || $route->defaults['plugin'] !== 'DebugKit';
+ return (!isset($route->defaults['plugin'])) || $route->defaults['plugin'] !== 'DebugKit';
36
});
37
38
return (string)count($routes);
0 commit comments