Skip to content

Commit 97b5507

Browse files
author
Luca Degasperi
committed
Typo fix
1 parent d24192c commit 97b5507

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -239,13 +239,13 @@ Route::get('secure-route', array('before' => 'oauth:scope1,scope2', function(){
239239
An interesting addition is the possibility to limit an endpoint to a specific owner type when using the client credentials grant type. It can be achieved by adding the ```oauth-owner``` before filter to your route.
240240

241241
```php
242-
Route::get('secure-route', array('before' => 'oauth:scope1,scope2|oauth-owner:client, function(){
242+
Route::get('secure-route', array('before' => 'oauth:scope1,scope2|oauth-owner:client', function(){
243243
return "oauth secured route for clients only";
244244
}));
245245
```
246246

247247

248-
The aim of this package is to make working with oauth2 server stuff in Laravel a breeze. You can still access all the undelying power of the league/oauth2-server package via the ```ResourceServer``` facade.
248+
The aim of this package is to make working with oauth2 server stuff in Laravel a breeze. You can still access all the undelying power of the league/oauth2-server package via the ```ResourceServer``` and ```AuthorizationServer``` facades.
249249

250250
## Support
251251

0 commit comments

Comments
 (0)