From 2a3cf0a52b56a34244e15f860d724cb9ca4389ee Mon Sep 17 00:00:00 2001 From: James Brooks Date: Mon, 24 Nov 2014 17:01:18 +0000 Subject: [PATCH] Lower-case the null constant --- app/routes.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/routes.php b/app/routes.php index c0ad7868..3d7a66e8 100644 --- a/app/routes.php +++ b/app/routes.php @@ -7,7 +7,7 @@ routesInDirectory(); function routesInDirectory($app = '') { - $routeDir = app_path('routes/' . $app . ($app !== '' ? '/' : NULL)); + $routeDir = app_path('routes/' . $app . ($app !== '' ? '/' : null)); $iterator = new RecursiveDirectoryIterator($routeDir); $iterator->setFlags(RecursiveDirectoryIterator::SKIP_DOTS);