From eea61d886bab386785f619d4c470d350e81f6435 Mon Sep 17 00:00:00 2001 From: Jason Lewis Date: Thu, 27 Nov 2014 11:56:56 +1100 Subject: [PATCH] This is what happens when you forget to run phpunit prior to committing. Signed-off-by: Jason Lewis --- tests/Stubs/IndividualScopeControllerStub.php | 2 +- tests/Stubs/WildcardScopeControllerStub.php | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/Stubs/IndividualScopeControllerStub.php b/tests/Stubs/IndividualScopeControllerStub.php index 8b45df459..8b2d281b6 100644 --- a/tests/Stubs/IndividualScopeControllerStub.php +++ b/tests/Stubs/IndividualScopeControllerStub.php @@ -11,7 +11,7 @@ class IndividualScopeControllerStub extends Controller public function __construct() { - $this->scope(['foo', 'bar'], 'index'); + $this->scopes(['foo', 'bar'], 'index'); } public function index() diff --git a/tests/Stubs/WildcardScopeControllerStub.php b/tests/Stubs/WildcardScopeControllerStub.php index 5fd1cbcea..ca4b6e600 100644 --- a/tests/Stubs/WildcardScopeControllerStub.php +++ b/tests/Stubs/WildcardScopeControllerStub.php @@ -11,7 +11,7 @@ class WildcardScopeControllerStub extends Controller public function __construct() { - $this->scope(['foo', 'bar']); + $this->scopes(['foo', 'bar']); } public function index()