Skip to content

Commit a41218b

Browse files
committed
Restructure route configuration to remove
unnecessary boolean argument The commit removes the boolean argument passed to the `Route::config()` function in the `routes/route.php` file. This change is made to simplify the configuration process and avoid potential confusion caused by the presence of an unused argument. No issues are addressed in this commit.
1 parent 5a63012 commit a41218b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

routes/route.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
* | The parameter contains only be a boolean, which indicates request logger to prints out logs output on each received request
1313
* ---------------------------------------------------------------------------------------------------------------------------
1414
*/
15-
Route::config(true);
15+
Route::config();
1616

1717

1818
/**

0 commit comments

Comments
 (0)