/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src/Panel
NameSizeModeActions
CachePanel.php26480644editdlrm
DeprecationsPanel.php43480644editdlrm
EnvironmentPanel.php26560644editdlrm
HistoryPanel.php12160644editdlrm
IncludePanel.php33980644editdlrm
LogPanel.php15550644editdlrm
MailPanel.php27390644editdlrm
PackagesPanel.php12900644editdlrm
PanelRegistry.php27410644editdlrm
RequestPanel.php18550644editdlrm
RoutesPanel.php16090644editdlrm
SessionPanel.php11250644editdlrm
SqlLogPanel.php30720644editdlrm
TimerPanel.php46980644editdlrm
VariablesPanel.php38240644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/debug_kit/src/Panel/PanelRegistry.php (2741B)
setEventManager($events); } /** * Resolve a panel class name. * * Part of the template method for Cake\Utility\ObjectRegistry::load() * * @param string $class Partial class name to resolve. * @return string|null Either the correct class name, null if the class is not found. */ protected function _resolveClassName(string $class): ?string { return App::className($class, 'Panel', 'Panel'); } /** * Throws an exception when a component is missing. * * Part of the template method for Cake\Utility\ObjectRegistry::load() * * @param string $class The classname that is missing. * @param string $plugin The plugin the component is missing in. * @return void * @throws \RuntimeException */ protected function _throwMissingClassError(string $class, ?string $plugin): void { throw new \RuntimeException(sprintf("Unable to find '%s' panel.", $class)); } /** * Create the panels instance. * * Part of the template method for Cake\Utility\ObjectRegistry::load() * * @param string $class The classname to create. * @param string $alias The alias of the panel. * @param array $config An array of config to use for the panel. * @return \DebugKit\DebugPanel The constructed panel class. * @psalm-param class-string<\DebugKit\DebugPanel> $class */ protected function _create($class, string $alias, array $config) { $instance = new $class($this, $config); $this->getEventManager()->on($instance); return $instance; } }