/var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Console
NameSizeModeActions
Command/-0755rm
Exception/-0755rm
TestSuite/-0755rm
Arguments.php39260644editdlrm
BaseCommand.php85150644editdlrm
Command.php1420644editdlrm
CommandCollection.php74910644editdlrm
CommandCollectionAwareInterface.php10270644editdlrm
CommandFactory.php19790644editdlrm
CommandFactoryInterface.php10010644editdlrm
CommandInterface.php16980644editdlrm
CommandRunner.php126430644editdlrm
CommandScanner.php48430644editdlrm
composer.json11730644editdlrm
ConsoleErrorHandler.php1890644editdlrm
ConsoleInput.php28530644editdlrm
ConsoleInputArgument.php55680644editdlrm
ConsoleInputOption.php89290644editdlrm
ConsoleInputSubcommand.php39340644editdlrm
ConsoleIo.php215160644editdlrm
ConsoleOptionParser.php315660644editdlrm
ConsoleOutput.php100000644editdlrm
Helper.php17050644editdlrm
HelperRegistry.php32650644editdlrm
HelpFormatter.php73140644editdlrm
LICENSE.txt12040644editdlrm
README.md34650644editdlrm
Shell.php293710644editdlrm
ShellDispatcher.php121610644editdlrm
TaskRegistry.php29310644editdlrm
Edit: /var/www/vhosts/ihelp.ro/httpdocs/vendor/cakephp/cakephp/src/Console/CommandScanner.php (4843B)
scanDir( dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Shell' . DIRECTORY_SEPARATOR, 'Cake\Shell\\', '', ['command_list'] ); $coreCommands = $this->scanDir( dirname(__DIR__) . DIRECTORY_SEPARATOR . 'Command' . DIRECTORY_SEPARATOR, 'Cake\Command\\', '', ['command_list'] ); return array_merge($coreShells, $coreCommands); } /** * Scan the application for shells & commands. * * @return array A list of command metadata. */ public function scanApp(): array { $appNamespace = Configure::read('App.namespace'); $appShells = $this->scanDir( App::classPath('Shell')[0], $appNamespace . '\Shell\\', '', [] ); $appCommands = $this->scanDir( App::classPath('Command')[0], $appNamespace . '\Command\\', '', [] ); return array_merge($appShells, $appCommands); } /** * Scan the named plugin for shells and commands * * @param string $plugin The named plugin. * @return array A list of command metadata. */ public function scanPlugin(string $plugin): array { if (!Plugin::isLoaded($plugin)) { return []; } $path = Plugin::classPath($plugin); $namespace = str_replace('/', '\\', $plugin); $prefix = Inflector::underscore($plugin) . '.'; $commands = $this->scanDir($path . 'Command', $namespace . '\Command\\', $prefix, []); $shells = $this->scanDir($path . 'Shell', $namespace . '\Shell\\', $prefix, []); return array_merge($shells, $commands); } /** * Scan a directory for .php files and return the class names that * should be within them. * * @param string $path The directory to read. * @param string $namespace The namespace the shells live in. * @param string $prefix The prefix to apply to commands for their full name. * @param array $hide A list of command names to hide as they are internal commands. * @return array The list of shell info arrays based on scanning the filesystem and inflection. */ protected function scanDir(string $path, string $namespace, string $prefix, array $hide): array { if (!is_dir($path)) { return []; } // This ensures `Command` class is not added to the list. $hide[] = ''; $classPattern = '/(Shell|Command)\.php$/'; $fs = new Filesystem(); /** @var array<\SplFileInfo> $files */ $files = $fs->find($path, $classPattern); $shells = []; foreach ($files as $fileInfo) { $file = $fileInfo->getFilename(); $name = Inflector::underscore(preg_replace($classPattern, '', $file)); if (in_array($name, $hide, true)) { continue; } $class = $namespace . $fileInfo->getBasename('.php'); /** @psalm-suppress DeprecatedClass */ if ( !is_subclass_of($class, Shell::class) && !is_subclass_of($class, CommandInterface::class) ) { continue; } if (is_subclass_of($class, BaseCommand::class)) { $name = $class::defaultName(); } $shells[$path . $file] = [ 'file' => $path . $file, 'fullName' => $prefix . $name, 'name' => $name, 'class' => $class, ]; } ksort($shells); return array_values($shells); } }