PHP Classes

File: src/bootstrap/app.php

Recommend this page to a friend!
  Classes of Angel Campos   Atlas catalog   src/bootstrap/app.php   Download  
File: src/bootstrap/app.php
Role: Example script
Content type: text/plain
Description: Example script
Class: Atlas catalog
API to provide details of APIs of an organization
Author: By
Last change:
Date: 1 month ago
Size: 568 bytes
 

Contents

Class file image Download
<?php

use Illuminate\Foundation\Application;
use
Illuminate\Foundation\Configuration\Exceptions;
use
Illuminate\Foundation\Configuration\Middleware;

return
Application::configure(basePath: dirname(__DIR__))
    ->
withRouting(
       
web: __DIR__.'/../routes/web.php',
       
api: __DIR__.'/../routes/api.php',
       
commands: __DIR__.'/../routes/console.php',
       
health: '/up',
    )
    ->
withMiddleware(function (Middleware $middleware): void {
       
//
   
})
    ->
withExceptions(function (Exceptions $exceptions): void {
       
//
   
})->create();