Update model path in AuthServiceProvider's policies.

Due to the change of default model location in Laravel 8.x from /App to /App/Models, the initial policy comment shoud also reflect this change.
This commit is contained in:
Wojciech Gabryś 2020-09-15 06:35:19 +02:00 committed by Dries Vints
parent c6c41f11b8
commit c62a7c13bf
1 changed files with 1 additions and 1 deletions

View File

@ -13,7 +13,7 @@ class AuthServiceProvider extends ServiceProvider
* @var array * @var array
*/ */
protected $policies = [ protected $policies = [
// 'App\Model' => 'App\Policies\ModelPolicy', // 'App\Models\Model' => 'App\Policies\ModelPolicy',
]; ];
/** /**