18 lines
323 B
PHP
18 lines
323 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Toby\Architecture\Providers;
|
|
|
|
use Illuminate\Foundation\Support\Providers\AuthServiceProvider as ServiceProvider;
|
|
|
|
class AuthServiceProvider extends ServiceProvider
|
|
{
|
|
protected $policies = [];
|
|
|
|
public function boot(): void
|
|
{
|
|
$this->registerPolicies();
|
|
}
|
|
}
|