From 8ae551e30f671079f15f1e72fb0110a9153faea4 Mon Sep 17 00:00:00 2001 From: Sentence Date: Wed, 16 Oct 2013 14:05:53 +0200 Subject: [PATCH] Fix compatible error Strict Standards: Declaration of Controller\Main::notFound() should be compatible with Slim\Slim::notFound($callable = NULL) --- Controller/Main.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Controller/Main.php b/Controller/Main.php index 9a192b5..e17f14e 100644 --- a/Controller/Main.php +++ b/Controller/Main.php @@ -25,7 +25,7 @@ public function test3() } - public function notFound() + public function notFound($callable = NULL) { $this->render("error", array(), 404); }