Skip to content

Commit

Permalink
update file
Browse files Browse the repository at this point in the history
  • Loading branch information
juancristobalgd1 authored Mar 27, 2024
1 parent f64d6b9 commit a9f39e4
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 8 deletions.
3 changes: 3 additions & 0 deletions app/middlewares/BaseMiddleware.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,8 @@ abstract class BaseMiddleware
\Middlewares\MaintenanceMiddleware::class,
\Middlewares\VerifyCsrfTokenMiddleware::class,
\Middlewares\AuthMiddleware::class,

// more middleware here ...

];
}
16 changes: 8 additions & 8 deletions index.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
<?php

/*
|-------------------------------------------------------
| Require Front Controller
|-------------------------------------------------------
|
| The front controller contains the logic to connect a request
| with a specific controller and execute it.
/**
------------------------------------------------------
REQUIRE FRONT CONTROLLER
------------------------------------------------------
*
* The front controller contains the logic to connect a
* request with a specific controller and execute it.
*/
require_once __DIR__ . DIRECTORY_SEPARATOR . 'public'
. DIRECTORY_SEPARATOR . 'index.php';
. DIRECTORY_SEPARATOR . 'index.php';

0 comments on commit a9f39e4

Please sign in to comment.