Skip to content

Commit

Permalink
Correct setUp() visibility
Browse files Browse the repository at this point in the history
  • Loading branch information
geekish committed Jun 20, 2017
1 parent 7c112eb commit 5ca16a1
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion tests/Command/AliasCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class AliasCommandTest extends TestCase
/** @var AliasCommand */
private $command;

public function setUp()
protected function setUp()
{
$container = $this->createContainer();
$helper = $container->get(CrapHelper::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/InfoCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ class InfoCommandTest extends TestCase
/** @var AliasCommand */
private $command;

public function setUp()
protected function setUp()
{
$container = $this->createContainer();
$helper = $container->get(CrapHelper::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/RequireCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ class RequireCommandTest extends TestCase
/** @var CommandTester */
private $tester;

public function setUp()
protected function setUp()
{
$container = $this->createContainer();
$helper = $container->get(CrapHelper::class);
Expand Down
2 changes: 1 addition & 1 deletion tests/Command/UnaliasCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ class UnaliasCommandTest extends TestCase
/** @var AliasCommand */
private $command;

public function setUp()
protected function setUp()
{
$container = $this->createContainer();
$helper = $container->get(CrapHelper::class);
Expand Down

0 comments on commit 5ca16a1

Please sign in to comment.