Skip to content

Commit

Permalink
Fix Robo\Task\Docker\Base to implement CommandInterface (#625)
Browse files Browse the repository at this point in the history
  • Loading branch information
asgorobets authored and greg-1-anderson committed Sep 19, 2017
1 parent 4fde6b6 commit 19d7321
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Task/Docker/Base.php
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,11 @@
namespace Robo\Task\Docker;

use Robo\Common\ExecOneCommand;
use Robo\Contract\CommandInterface;
use Robo\Contract\PrintedInterface;
use Robo\Task\BaseTask;

abstract class Base extends BaseTask implements PrintedInterface
abstract class Base extends BaseTask implements CommandInterface, PrintedInterface
{
use ExecOneCommand;

Expand Down

0 comments on commit 19d7321

Please sign in to comment.