Skip to content

Commit

Permalink
fix package for older Laravel versions
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze committed Jan 20, 2017
1 parent 4acb48f commit f4365ed
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,12 @@

All Notable changes to laravel-tail will be documented in this file

### 1.1.5
- Remove L5.4 compatibility

### 1.1.4
**THIS RELEASE CONTAINS BUGS, DO NOT USE**

- Make compatible with Laravel 5.4

### 1.1.3 - 2016-11-26
Expand Down
4 changes: 2 additions & 2 deletions src/TailServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ public function boot()
*/
public function register()
{
$this->app['command.tail'] = $this->app->singleton(
$this->app['command.tail'] = $this->app->share(
function ($app) {
return new TailCommand();
}
Expand All @@ -50,4 +50,4 @@ public function provides()
{
return ['command.tail'];
}
}
}

0 comments on commit f4365ed

Please sign in to comment.