Cleanup and more style fixes

This commit is contained in:
Bart Visscher 2013-09-02 18:20:04 +02:00
parent cafc8cb223
commit 44b3e71ed4
2 changed files with 5 additions and 8 deletions

View File

@ -7,7 +7,6 @@
* See the COPYING-README file. * See the COPYING-README file.
*/ */
use OC\Core\Command\GreetCommand;
use Symfony\Component\Console\Application; use Symfony\Component\Console\Application;
$RUNTIME_NOAPPS = true; $RUNTIME_NOAPPS = true;

View File

@ -8,23 +8,21 @@ use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption; use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface; use Symfony\Component\Console\Output\OutputInterface;
class Status extends Command class Status extends Command {
{ protected function configure() {
protected function configure()
{
$this $this
->setName('status') ->setName('status')
->setDescription('show some status information') ->setDescription('show some status information')
; ;
} }
protected function execute(InputInterface $input, OutputInterface $output) protected function execute(InputInterface $input, OutputInterface $output) {
{
$values = array( $values = array(
'installed' => \OC_Config::getValue('installed') ? 'true' : 'false', 'installed' => \OC_Config::getValue('installed') ? 'true' : 'false',
'version' => implode('.', \OC_Util::getVersion()), 'version' => implode('.', \OC_Util::getVersion()),
'versionstring' => \OC_Util::getVersionString(), 'versionstring' => \OC_Util::getVersionString(),
'edition' => \OC_Util::getEditionString()); 'edition' => \OC_Util::getEditionString(),
);
print_r($values); print_r($values);
} }
} }