1 | <?php |
||
23 | class ImportCommandController extends Command |
||
24 | { |
||
25 | |||
26 | /** |
||
27 | * @var object|\Psr\Log\LoggerAwareInterface|\TYPO3\CMS\Core\SingletonInterface|ObjectManager |
||
28 | */ |
||
29 | protected $objectManager; |
||
30 | |||
31 | /** |
||
32 | * ImportCommandController constructor. |
||
33 | * @param string|null $name |
||
34 | */ |
||
35 | public function __construct(string $name = null) |
||
41 | |||
42 | protected function configure() |
||
47 | |||
48 | /** |
||
49 | * @param InputInterface $input |
||
50 | * @param OutputInterface $output |
||
51 | * @return int |
||
52 | */ |
||
53 | protected function execute(InputInterface $input, OutputInterface $output) |
||
59 | |||
60 | /** |
||
61 | * initializes the import service manager |
||
62 | * |
||
63 | * @param string $mail Set an email address for error reporting |
||
64 | * |
||
65 | * @return bool |
||
66 | */ |
||
67 | public function initializeServiceManagerCommand($mail = null) |
||
96 | |||
97 | /** |
||
98 | * @param FlashMessage $flashMessage |
||
99 | */ |
||
100 | protected function addFlashMessage(FlashMessage $flashMessage) |
||
106 | } |
||
107 |
This check looks from parameters that have been defined for a function or method, but which are not used in the method body.