Skip to content

Commit

Permalink
Clean up.
Browse files Browse the repository at this point in the history
  • Loading branch information
jadb committed May 5, 2014
1 parent 13665e9 commit 4953374
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/Task/FileSystem.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@
namespace Robo\Task;
use Robo\Output;
use Robo\Result;
use Robo\Task\Shared\DynamicConfig;
use Robo\Task\Shared\TaskInterface;
use Robo\Util\FileSystem as FSUtils;

Expand Down Expand Up @@ -55,7 +56,7 @@ protected function taskRequire($file)
}

abstract class BaseDirTask implements TaskInterface {
use \Robo\Output;
use Output;

protected $dirs = [];

Expand Down Expand Up @@ -162,8 +163,8 @@ public function run()
*/
class ReplaceInFileTask implements TaskInterface
{
use \Robo\Output;
use Shared\DynamicConfig;
use Output;
use DynamicConfig;

protected $filename;
protected $from;
Expand Down Expand Up @@ -214,7 +215,7 @@ function run()
class WriteToFileTask implements TaskInterface
{
use Output;
use Shared\DynamicConfig;
use DynamicConfig;

protected $filename;
protected $body = "";
Expand Down

0 comments on commit 4953374

Please sign in to comment.