for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* This file is part of the teamneusta/magallanes-task-typo3 package.
*
* Copyright (c) 2017 neusta GmbH | Ein team neusta Unternehmen
* For the full copyright and license information, please view the LICENSE file that was distributed with this source code.
* @license http://www.opensource.org/licenses/mit-license.html MIT License
*/
declare(strict_types=1);
namespace TeamNeusta\Magallanes\Task\TYPO3\Console;
* Class ExtensionSetupActiveTask
* @author Benjamin Kluge <[email protected]>
* @package TeamNeusta\Magallanes\Task\TYPO3\Console
class ExtensionSetupActiveTask extends AbstractConsoleTask
{
* name
* @var string
protected $name = 'console-setupActive';
* description
protected $description = '[TYPO3] TYPO3 console extension setupActive';
* execute
* @return bool
public function execute(): bool
$command = $this->getConsoleCommand('extension:setupactive', $this->getOptions([]));
return $this->executeCommand($command);
}