Completed
Push — master ( 896c01...f2e2ec )
by Damien
04:36
created
src/Veto/Layer/LayerChain.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Layer;
12 12
 
13 13
 use Veto\DI\AbstractContainerAccessor;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,7 @@
 block discarded – undo
40 40
         // Enforce the type of $layer
41 41
         if (!($layer instanceof InboundLayerInterface || $layer instanceof OutboundLayerInterface)) {
42 42
             throw new \InvalidArgumentException(
43
-                'Argument 1 of '  . __CLASS__ . '::' . __METHOD__ .
43
+                'Argument 1 of ' . __CLASS__ . '::' . __METHOD__ .
44 44
                 ' must be either an InboundLayerInterface or an OutboundLayerInterface instance.'
45 45
             );
46 46
         }
Please login to merge, or discard this patch.
src/Veto/Layer/LayerChainBuilder.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Layer;
12 12
 
13 13
 use Veto\Configuration\Hive;
Please login to merge, or discard this patch.
src/Veto/Layer/OutboundLayerInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Layer;
12 12
 
13 13
 use Veto\HTTP\Response;
Please login to merge, or discard this patch.
src/Veto/Layer/Router/RouterEvent.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Layer\Router;
12 12
 
13 13
 use Veto\Event\Event;
Please login to merge, or discard this patch.
src/Veto/Layer/Router/RouterLayer.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Layer\Router;
12 12
 
13 13
 use Veto\App;
Please login to merge, or discard this patch.
src/Veto/MVC/AbstractController.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\MVC;
12 12
 
13 13
 use Veto\DI\AbstractContainerAccessor;
Please login to merge, or discard this patch.
src/Veto/Templating/Engine/NullEngine.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Templating\Engine;
12 12
 
13 13
 use Veto\Templating\EngineInterface;
Please login to merge, or discard this patch.
src/Veto/Templating/Engine/TwigEngine.php 2 patches
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Templating\Engine;
12 12
 
13 13
 use Veto\Templating\EngineInterface;
Please login to merge, or discard this patch.
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
         // Determine the type of loader that is used by this twig
42 42
         if ($loader instanceof \Twig_Loader_Filesystem) {
43 43
             $loader->addPath($path);
44
-        } else if($loader instanceof \Twig_Loader_Chain) {
44
+        } else if ($loader instanceof \Twig_Loader_Chain) {
45 45
             $loader->addLoader(
46 46
                 new \Twig_Loader_Filesystem($path)
47 47
             );
Please login to merge, or discard this patch.
src/Veto/Templating/EngineInterface.php 1 patch
Indentation   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -1,13 +1,13 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Veto.
4
- * PHP Microframework.
5
- *
6
- * @author Damien Walsh <[email protected]>
7
- * @copyright Damien Walsh 2013-2014
8
- * @version 0.1
9
- * @package veto
10
- */
3
+     * Veto.
4
+     * PHP Microframework.
5
+     *
6
+     * @author Damien Walsh <[email protected]>
7
+     * @copyright Damien Walsh 2013-2014
8
+     * @version 0.1
9
+     * @package veto
10
+     */
11 11
 namespace Veto\Templating;
12 12
 
13 13
 /**
Please login to merge, or discard this patch.