diff options
author | Thomas Müller <thomas.mueller@tmit.eu> | 2015-01-28 22:08:50 +0100 |
---|---|---|
committer | Thomas Müller <thomas.mueller@tmit.eu> | 2015-02-10 11:51:24 +0100 |
commit | d74662df7df72ad9ec238b78223acc0e7f65311f (patch) | |
tree | ffadb56b1bb0c0dfa11cb54a10a67186aff31306 /core/register_command.php | |
parent | 5ae03fd650b6f3665d1c69ead674d4f5d6420513 (diff) | |
download | nextcloud-server-d74662df7df72ad9ec238b78223acc0e7f65311f.tar.gz nextcloud-server-d74662df7df72ad9ec238b78223acc0e7f65311f.zip |
implement php code checker to detect usage of not allowed private APIs - including console command to check local code to be used by developers
Diffstat (limited to 'core/register_command.php')
-rw-r--r-- | core/register_command.php | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/core/register_command.php b/core/register_command.php index 5aa55be3e2c..d7aaf9a41b7 100644 --- a/core/register_command.php +++ b/core/register_command.php @@ -15,6 +15,7 @@ $application->add(new OC\Core\Command\Db\ConvertType(\OC::$server->getConfig(), $application->add(new OC\Core\Command\Upgrade(\OC::$server->getConfig())); $application->add(new OC\Core\Command\Maintenance\SingleUser()); $application->add(new OC\Core\Command\Maintenance\Mode(\OC::$server->getConfig())); +$application->add(new OC\Core\Command\App\CheckCode()); $application->add(new OC\Core\Command\App\Disable()); $application->add(new OC\Core\Command\App\Enable()); $application->add(new OC\Core\Command\App\ListApps()); |