Skip to content

Commit

Permalink
This is what happens when you forget to run phpunit prior to committing.
Browse files Browse the repository at this point in the history
Signed-off-by: Jason Lewis <[email protected]>
  • Loading branch information
jasonlewis committed Nov 27, 2014
1 parent 02f20fe commit eea61d8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/Stubs/IndividualScopeControllerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class IndividualScopeControllerStub extends Controller

public function __construct()
{
$this->scope(['foo', 'bar'], 'index');
$this->scopes(['foo', 'bar'], 'index');
}

public function index()
Expand Down
2 changes: 1 addition & 1 deletion tests/Stubs/WildcardScopeControllerStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class WildcardScopeControllerStub extends Controller

public function __construct()
{
$this->scope(['foo', 'bar']);
$this->scopes(['foo', 'bar']);
}

public function index()
Expand Down

0 comments on commit eea61d8

Please sign in to comment.