Changed the 'development' environment default error reporting to included E_STRICT errors.  E_ALL does not include these errors.
diff --git a/index.php b/index.php
index f4ac11a..7555158 100644
--- a/index.php
+++ b/index.php
@@ -33,7 +33,7 @@
 	switch (ENVIRONMENT)
 	{
 		case 'development':
-			error_reporting(E_ALL);
+			error_reporting(E_ALL | E_STRICT);
 		break;
 	
 		case 'testing':