aboutsummaryrefslogtreecommitdiffstats
path: root/core/register_command.php
diff options
context:
space:
mode:
authorThomas Müller <thomas.mueller@tmit.eu>2015-01-28 22:08:50 +0100
committerThomas Müller <thomas.mueller@tmit.eu>2015-02-10 11:51:24 +0100
commitd74662df7df72ad9ec238b78223acc0e7f65311f (patch)
treeffadb56b1bb0c0dfa11cb54a10a67186aff31306 /core/register_command.php
parent5ae03fd650b6f3665d1c69ead674d4f5d6420513 (diff)
downloadnextcloud-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.php1
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());