‪TYPO3CMS  9.5
Commands.php
Go to the documentation of this file.
1 <?php
2 
3 return [
4  'dumpautoload' => [
5  'class' => \TYPO3\CMS\Core\Command\DumpAutoloadCommand::class,
6  'schedulable' => false,
7  ],
8  'swiftmailer:spool:send' => [
9  'class' => \TYPO3\CMS\Core\Command\SendEmailCommand::class,
10  ],
11  'extension:list' => [
12  'class' => \TYPO3\CMS\Core\Command\ExtensionListCommand::class,
13  'schedulable' => false
14  ],
15  'site:list' => [
16  'class' => \TYPO3\CMS\Core\Command\SiteListCommand::class,
17  'schedulable' => false
18  ],
19  'site:show' => [
20  'class' => \TYPO3\CMS\Core\Command\SiteShowCommand::class,
21  'schedulable' => false
22  ]
23 ];