@@ -630,18 +630,16 @@ The output is like the following:
630630
631631.. code-block :: none
632632
633- +--------+----------------------------+------------------------------------------------+----------------+-----------------------+
634- | Method | Route | Handler | Filters:before | Filters:after |
635- +--------+----------------------------+------------------------------------------------+----------------+-----------------------+
636- | GET | / | \App\Controllers\Home::index | csrf | secureheaders toolbar |
637- | CLI | migrations/([^/]+)/([^/]+) | \CodeIgniter\Commands\MigrationsCommand::$1/$2 | | |
638- | CLI | migrations/([^/]+) | \CodeIgniter\Commands\MigrationsCommand::$1 | | |
639- | CLI | migrations | \CodeIgniter\Commands\MigrationsCommand::index | | |
640- | CLI | ci(.*) | \CodeIgniter\CLI\CommandRunner::index/$1 | | |
641- | auto | / | \App\Controllers\Home::index | csrf | secureheaders toolbar |
642- | auto | home | \App\Controllers\Home::index | csrf | secureheaders toolbar |
643- | auto | home/index[/...] | \App\Controllers\Home::index | csrf | secureheaders toolbar |
644- +--------+----------------------------+------------------------------------------------+----------------+-----------------------+
633+ +--------+------------------+------------------------------------------+----------------+-----------------------+
634+ | Method | Route | Handler | Before Filters | After Filters |
635+ +--------+------------------+------------------------------------------+----------------+-----------------------+
636+ | GET | / | \App\Controllers\Home::index | invalidchars | secureheaders toolbar |
637+ | GET | feed | (Closure) | invalidchars | secureheaders toolbar |
638+ | CLI | ci(.*) | \CodeIgniter\CLI\CommandRunner::index/$1 | | |
639+ | auto | / | \App\Controllers\Home::index | invalidchars | secureheaders toolbar |
640+ | auto | home | \App\Controllers\Home::index | invalidchars | secureheaders toolbar |
641+ | auto | home/index[/...] | \App\Controllers\Home::index | invalidchars | secureheaders toolbar |
642+ +--------+------------------+------------------------------------------+----------------+-----------------------+
645643
646644 The *Method * column shows the HTTP method that the route is listening for. ``auto `` means that the route is discovered by auto routing, so it is not defined in **app/Config/Routes.php **.
647645
0 commit comments