Skip to content

Commit

Permalink
Ran cs-fixer
Browse files Browse the repository at this point in the history
  • Loading branch information
kohkimakimoto committed Oct 22, 2014
1 parent 872a8ae commit 95b0468
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
2 changes: 0 additions & 2 deletions src/Altax/Console/Application.php
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,8 @@
use Symfony\Component\Console\Input\InputInterface;
use Symfony\Component\Console\Input\InputOption;
use Symfony\Component\Console\Output\OutputInterface;
use Symfony\Component\Console\Output\ConsoleOutput;
use Symfony\Component\Console\Command\Command;
use Symfony\Component\Console\Command\ListCommand;
use Symfony\Component\Console\Formatter\OutputFormatter;
use Symfony\Component\Finder\Finder;

use Altax\Foundation\Application as BaseApplication;
Expand Down
1 change: 0 additions & 1 deletion src/Altax/Foundation/AliasLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,6 @@ public function setPrefix($prefix)
$this->prefix = $prefix;
}


/**
* Indicates if the loader has been registered.
*
Expand Down
2 changes: 0 additions & 2 deletions src/Altax/Process/Process.php
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
<?php
namespace Altax\Process;

use Symfony\Component\Filesystem\Filesystem;

class Process
{
protected $node;
Expand Down
1 change: 0 additions & 1 deletion src/Altax/Shell/Script.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
/*
namespace Altax\Shell;
use Symfony\Component\Process\Process as SymfonyProcess;
use Symfony\Component\Filesystem\Filesystem;
class Script
Expand Down
4 changes: 3 additions & 1 deletion src/Altax/Shell/ScriptBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,7 @@ public function run($path, $options = array())
if (isset($options["interpreter"])) {
$script->interpreter($options["interpreter"]);
}
return $script->run();
}
Expand All @@ -58,7 +59,8 @@ public function runLocally($path, $options = array())
if (isset($options["interpreter"])) {
$script->interpreter($options["interpreter"]);
}
return $script->runLocally();
}
}
*/
*/

0 comments on commit 95b0468

Please sign in to comment.