From 8beb74dd307770c909f0474e26a1004099ac78bd Mon Sep 17 00:00:00 2001 From: Thilanga Pitigala Date: Thu, 21 Sep 2017 01:57:14 +1000 Subject: [PATCH] Fixed missing abstract methods within stubs (#1453) * Added missing abstract method within test stubs --- composer.json | 2 +- tests/Stubs/ApplicationStub.php | 10 ++++++++++ 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/composer.json b/composer.json index 2b4e1a116..9936134fb 100644 --- a/composer.json +++ b/composer.json @@ -53,7 +53,7 @@ }, "extra": { "branch-alias": { - "dev-master": "1.0-dev" + "dev-master": "2.0-dev" }, "laravel": { "providers": [ diff --git a/tests/Stubs/ApplicationStub.php b/tests/Stubs/ApplicationStub.php index c53c9f178..71bff9e10 100644 --- a/tests/Stubs/ApplicationStub.php +++ b/tests/Stubs/ApplicationStub.php @@ -66,4 +66,14 @@ public function booted($callback) { // } + + public function getCachedPackagesPath() + { + // + } + + public function runningInConsole() + { + // + } }