From 43bbc0f0624edd77f19404e58a4d486bb2bd5e17 Mon Sep 17 00:00:00 2001 From: Virgil-Adrian Teaca Date: Tue, 21 May 2019 16:45:43 +0300 Subject: [PATCH 1/2] Improve the Routing Service --- src/Routing/Route.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Routing/Route.php b/src/Routing/Route.php index 9effd1fe..8f177227 100644 --- a/src/Routing/Route.php +++ b/src/Routing/Route.php @@ -618,7 +618,7 @@ public static function getValidators() */ public static function sort(array $routes) { - if (! Config::get('routing.sortRoutes', true)) { + if (! Config::get('routing.sorting', true)) { return $routes; } From 6453cabcfc7a9020205d45c62fa9d9f6aa5a1b81 Mon Sep 17 00:00:00 2001 From: Virgil-Adrian Teaca Date: Tue, 21 May 2019 16:51:11 +0300 Subject: [PATCH 2/2] Update the framework version --- src/Foundation/Application.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Foundation/Application.php b/src/Foundation/Application.php index a68a3b44..9aef2fae 100644 --- a/src/Foundation/Application.php +++ b/src/Foundation/Application.php @@ -41,7 +41,7 @@ class Application extends Container implements ResponsePreparerInterface * * @var string */ - const VERSION = '4.1.14'; + const VERSION = '4.1.15'; /** * Indicates if the application has "booted".