Changed error reporting level to -1, which will show ALL PHP errors. This will future-proof the solution.  Thanks @ericbarnes for pointing that out.
diff --git a/index.php b/index.php
index 7555158..899f4ce 100644
--- a/index.php
+++ b/index.php
@@ -33,7 +33,7 @@
 	switch (ENVIRONMENT)
 	{
 		case 'development':
-			error_reporting(E_ALL | E_STRICT);
+			error_reporting(-1);
 		break;
 	
 		case 'testing':