From 175732fb7143b0b864266ae74d711e2137a159b0 Mon Sep 17 00:00:00 2001 From: Bryan Davis Date: Tue, 9 Feb 2016 21:56:55 -0700 Subject: [PATCH] Fix codesniff warnings --- src/App.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/App.php b/src/App.php index 8b41f83..3091e50 100644 --- a/src/App.php +++ b/src/App.php @@ -216,10 +216,10 @@ function () use ( $slim ) { } )->name( 'SAL' ); } - ); //end group '/' + ); // end group '/' $slim->notFound( function () use ( $slim ) { $slim->render( '404.html' ); } ); - } //end configureRoutes + } // end configureRoutes }