From ffbf199f59fbbd4a0afda3789e11031e304d7c0a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sergio=20Le=C3=B3n?= Date: Sat, 21 May 2022 01:31:02 -0500 Subject: [PATCH] Docs(README): Updated README.md --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9822cd14..5784657b 100644 --- a/README.md +++ b/README.md @@ -56,8 +56,8 @@ The Carbon class inherits from the PHP DateTime class and is installed by defaul ### 1. ROUTES AND MIDDLEWARE Lion-Route has been implemented for route handling. More information at [Lion-Route](https://github.com/Sleon4/Lion-Route).
-Middleware is easy to implement. They must have the main class imported into Middleware, which initializes different functions and objects at the Middleware level.
-The rule for middleware is simple, in the constructor they must be initialized with the $this->init() function. More information about the use of Middleware in [Lion-Route](https://github.com/Sleon4/Lion-Route).
+Middleware is easy to implement. They must have the main class imported into `Middleware`, which initializes different functions and objects at the Middleware level.
+The rule for middleware is simple, in the constructor they must be initialized with the `$this->init()` function. More information about the use of Middleware in [Lion-Route](https://github.com/Sleon4/Lion-Route).
You can create a middleware with the command. ```php namespace App\Http\Middleware;