2013-09-13 12:10:04 -04:00
|
|
|
<?php
|
|
|
|
|
/**
|
|
|
|
|
* Copyright (c) 2013 Bart Visscher <bartv@thisnet.nl>
|
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
|
* later.
|
|
|
|
|
* See the COPYING-README file.
|
|
|
|
|
*/
|
|
|
|
|
|
2013-10-17 06:51:30 -04:00
|
|
|
/** @var $application Symfony\Component\Console\Application */
|
2013-09-13 12:10:04 -04:00
|
|
|
$application->add(new OC\Core\Command\Status);
|
2013-10-17 06:51:30 -04:00
|
|
|
$application->add(new OC\Core\Command\Db\GenerateChangeScript());
|
2013-10-24 13:59:39 -04:00
|
|
|
$application->add(new OC\Core\Command\Upgrade());
|
2013-11-25 07:20:16 -05:00
|
|
|
$application->add(new OC\Core\Command\App\Disable());
|
|
|
|
|
$application->add(new OC\Core\Command\App\Enable());
|
2013-11-25 11:34:16 -05:00
|
|
|
$application->add(new OC\Core\Command\App\ListApps());
|