Skip to content

Commit eea61d8

Browse files
committed
This is what happens when you forget to run phpunit prior to committing.
Signed-off-by: Jason Lewis <[email protected]>
1 parent 02f20fe commit eea61d8

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

tests/Stubs/IndividualScopeControllerStub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class IndividualScopeControllerStub extends Controller
1111

1212
public function __construct()
1313
{
14-
$this->scope(['foo', 'bar'], 'index');
14+
$this->scopes(['foo', 'bar'], 'index');
1515
}
1616

1717
public function index()

tests/Stubs/WildcardScopeControllerStub.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ class WildcardScopeControllerStub extends Controller
1111

1212
public function __construct()
1313
{
14-
$this->scope(['foo', 'bar']);
14+
$this->scopes(['foo', 'bar']);
1515
}
1616

1717
public function index()

0 commit comments

Comments
 (0)