12 lines
192 B
PHP
12 lines
192 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
use App\Providers\AppServiceProvider;
|
|
use App\Providers\FortifyServiceProvider;
|
|
|
|
return [
|
|
AppServiceProvider::class,
|
|
FortifyServiceProvider::class,
|
|
];
|