Completed
Push — develop ( be97e2...216f2a )
by Dan
03:49 queued 01:47
created
src/App/Controllers/HelloWorldController.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Contains \NotAFramework\App\Controllers\HelloWorldController.
5
- */
3
+     * @file
4
+     * Contains \NotAFramework\App\Controllers\HelloWorldController.
5
+     */
6 6
 
7 7
 namespace NotAFramework\App\Controllers;
8 8
 
Please login to merge, or discard this patch.
src/App/Render/RendererInterface.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Contains \NotAFramework\App\Render\RendererInterface.
5
- */
3
+     * @file
4
+     * Contains \NotAFramework\App\Render\RendererInterface.
5
+     */
6 6
 
7 7
 namespace NotAFramework\App\Render;
8 8
 
Please login to merge, or discard this patch.
src/App/container.php 2 patches
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * The app container, handles dependency injection.
5
- */
3
+     * @file
4
+     * The app container, handles dependency injection.
5
+     */
6 6
 
7 7
 use League\Container\Container;
8 8
 use League\Container\ReflectionContainer;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -26,7 +26,7 @@
 block discarded – undo
26 26
  * Really.
27 27
  */
28 28
 
29
-$container->share('Symfony\Component\HttpFoundation\Request', function () {
29
+$container->share('Symfony\Component\HttpFoundation\Request', function() {
30 30
     return Symfony\Component\HttpFoundation\Request::createFromGlobals();
31 31
 });
32 32
 
Please login to merge, or discard this patch.
src/App/Http/routes.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Implement the router so we can show some content.
5
- */
3
+     * @file
4
+     * Implement the router so we can show some content.
5
+     */
6 6
 
7 7
 use Phroute\Phroute\RouteCollector;
8 8
 
Please login to merge, or discard this patch.
src/App/error.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     $whoops->pushHandler(new \Whoops\Handler\PrettyPageHandler);
16 16
 } else {
17 17
     // In production show a friendly message.
18
-    $whoops->pushHandler(function ($e) {
18
+    $whoops->pushHandler(function($e) {
19 19
         echo "Blimey, that wasn't supposed to happen. Please email the developer";
20 20
     });
21 21
 }
Please login to merge, or discard this patch.
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Implement error handling, just in case.
5
- */
3
+     * @file
4
+     * Implement error handling, just in case.
5
+     */
6 6
 
7 7
 // Register the error handler.
8 8
 $whoops = new \Whoops\Run;
Please login to merge, or discard this patch.
src/App/Controllers/Controller.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,8 +1,8 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * @file
4
- * Contains \NotAFramework\App\Controllers\Controller.
5
- */
3
+     * @file
4
+     * Contains \NotAFramework\App\Controllers\Controller.
5
+     */
6 6
 
7 7
 namespace NotAFramework\App\Controllers;
8 8
 
Please login to merge, or discard this patch.