Skip to content

Commit

Permalink
Merge pull request #646 from lucadegasperi/lumen52
Browse files Browse the repository at this point in the history
Add Lumen 5.2 support
  • Loading branch information
vinkla committed Jan 13, 2016
2 parents 7b0c76d + be11acc commit ff45ee6
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# CHANGELOG

## 5.1.2 (released 2016-01-13)

- Fix Lumen 5.2 support bug

## 5.1.1 (released 2015-12-22)

- Fix Laravel 5.2 support bug
Expand Down
10 changes: 5 additions & 5 deletions src/OAuth2ServerServiceProvider.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@

namespace LucaDegasperi\OAuth2Server;

use Illuminate\Contracts\Foundation\Application;
use Illuminate\Contracts\Container\Container as Application;
use Illuminate\Foundation\Application as LaravelApplication;
use Illuminate\Support\ServiceProvider;
use Laravel\Lumen\Application as LumenApplication;
Expand Down Expand Up @@ -49,7 +49,7 @@ public function boot()
/**
* Setup the config.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
Expand All @@ -69,7 +69,7 @@ protected function setupConfig(Application $app)
/**
* Setup the migrations.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
Expand All @@ -96,7 +96,7 @@ public function register()
/**
* Register the Authorization server with the IoC container.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
Expand Down Expand Up @@ -161,7 +161,7 @@ public function registerAuthorizer(Application $app)
* Register the Middleware to the IoC container because
* some middleware need additional parameters.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Container\Container $app
*
* @return void
*/
Expand Down

0 comments on commit ff45ee6

Please sign in to comment.