Skip to content

Commit

Permalink
Fixed missing abstract methods within stubs (#1453)
Browse files Browse the repository at this point in the history
* Added missing abstract method within test stubs
  • Loading branch information
thilanga authored Sep 20, 2017
1 parent e897ae4 commit 8beb74d
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
},
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
"dev-master": "2.0-dev"
},
"laravel": {
"providers": [
Expand Down
10 changes: 10 additions & 0 deletions tests/Stubs/ApplicationStub.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,14 @@ public function booted($callback)
{
//
}

public function getCachedPackagesPath()
{
//
}

public function runningInConsole()
{
//
}
}

0 comments on commit 8beb74d

Please sign in to comment.