Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CLEANUP] Doc comments and PSR-2 #206

Merged
merged 1 commit into from
Jun 30, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 0 additions & 2 deletions Classes/Command/ExtensionCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
*/

use Helhum\Typo3Console\Mvc\Controller\CommandController;
use TYPO3\CMS\Core\Core\Bootstrap;
use TYPO3\CMS\Core\Core\ClassLoadingInformation;

/**
* CommandController for working with extension management through CLI
Expand Down
3 changes: 2 additions & 1 deletion Classes/Command/InstallCommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -96,8 +96,9 @@ public function setupCommand(
* <b>Example:</b> <code>TYPO3_ACTIVE_FRAMEWORK_EXTENSIONS="info,info_pagetsconfig" ./typo3cms install:generatepackagestates</code>
*
* @param bool $removeInactive Inactive extensions are <comment>removed</comment> from <code>typo3/sysext</code>. <comment>Handle with care!</comment>
* @param bool $activateDefault If true, <code>typo3/cms</code> extensions that are marked as TYPO3 factory default, will be activated, even if not in the list of configured active framework extensions.
* @param bool $activateDefault If true, <code>typo3/cms</code> extensions that are marked as TYPO3 factory default, will be activated, even if not in the list of configured active framework extensions.
* @throws \TYPO3\CMS\Core\Package\Exception\InvalidPackageStateException
* @throws \TYPO3\CMS\Core\Package\Exception\ProtectedPackageKeyException
*/
public function generatePackageStatesCommand($removeInactive = false, $activateDefault = false)
{
Expand Down
3 changes: 1 addition & 2 deletions Classes/Mvc/Controller/CommandController.php
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
use Helhum\Typo3Console\Log\Writer\ConsoleWriter;
use Helhum\Typo3Console\Mvc\Cli\ConsoleOutput;
use Psr\Log\LoggerInterface;
use Symfony\Component\Console\Output\ConsoleOutput as SymfonyConsoleOutput;
use TYPO3\CMS\Core\Authentication\AbstractUserAuthentication;
use TYPO3\CMS\Core\Log\Logger;
use TYPO3\CMS\Core\Log\LogLevel;
Expand All @@ -36,7 +35,7 @@
*
* @license http://www.gnu.org/licenses/lgpl.html GNU Lesser General Public License, version 3 or later
*/
class CommandController implements CommandControllerInterface
abstract class CommandController implements CommandControllerInterface
{
/**
* @var Request
Expand Down