15 lines
260 B
PHP
15 lines
260 B
PHP
<?php
|
|
|
|
namespace App\Foundation;
|
|
|
|
use Illuminate\Foundation\Application as BaseApplication;
|
|
|
|
class Application extends BaseApplication
|
|
{
|
|
|
|
protected function registerBaseServiceProviders(): void
|
|
{
|
|
parent::registerBaseServiceProviders();
|
|
}
|
|
}
|