Passed
Pull Request — master (#284)
by
unknown
04:45
created
lib/Phile/ServiceLocator/PersistenceInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The Persistence ServiceLocator interface
4
- */
3
+     * The Persistence ServiceLocator interface
4
+     */
5 5
 namespace Phile\ServiceLocator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/ServiceLocator/MetaInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * ServiceLocator MetaParser interface
4
- */
3
+     * ServiceLocator MetaParser interface
4
+     */
5 5
 namespace Phile\ServiceLocator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/ServiceLocator/TemplateInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The TemplateInterface
4
- */
3
+     * The TemplateInterface
4
+     */
5 5
 namespace Phile\ServiceLocator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/ServiceLocator/ErrorHandlerInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The ErrorHandlerInterface
4
- */
3
+     * The ErrorHandlerInterface
4
+     */
5 5
 namespace Phile\ServiceLocator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/ServiceLocator/CacheInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Interface for a service locator
4
- */
3
+     * Interface for a service locator
4
+     */
5 5
 namespace Phile\ServiceLocator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/Gateway/EventObserverInterface.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The EventObserverInterface
4
- */
3
+     * The EventObserverInterface
4
+     */
5 5
 namespace Phile\Gateway;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/Repository/Page.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -92,7 +92,7 @@
 block discarded – undo
92 92
     public function findAll(array $options = array(), $folder = CONTENT_DIR)
93 93
     {
94 94
         return new PageCollection(
95
-            function () use ($options, $folder) {
95
+            function() use ($options, $folder) {
96 96
                 $options += $this->settings;
97 97
                 // ignore files with a leading '.' in its filename
98 98
                 $files = Utility::getFiles($folder, '\Phile\FilterIterator\ContentFileFilterIterator');
Please login to merge, or discard this patch.
Indentation   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * the page repository class
4
- */
3
+     * the page repository class
4
+     */
5 5
 namespace Phile\Repository;
6 6
 
7 7
 use Phile\Core\Registry;
@@ -128,8 +128,8 @@  discard block
 block discarded – undo
128 128
                     $column = array();
129 129
                     foreach ($pages as $page) {
130 130
                         /**
131
-            * @var \Phile\Model\Page $page
132
-            */
131
+                         * @var \Phile\Model\Page $page
132
+                         */
133 133
                         $meta = $page->getMeta();
134 134
                         if ($sort['type'] === 'page') {
135 135
                             $method = 'get' . ucfirst($key);
Please login to merge, or discard this patch.
lib/Phile/Repository/PageCollection.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
     public function offsetSet($offset, $value)
77 77
     {
78 78
         $this->load();
79
-        $this->pages[$offset] =    $value;
79
+        $this->pages[$offset] = $value;
80 80
     }
81 81
 
82 82
     public function offsetUnset($offset)
Please login to merge, or discard this patch.
lib/Phile/Core/ServiceLocator.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * The SerciveLocator class
4
- */
3
+     * The SerciveLocator class
4
+     */
5 5
 namespace Phile\Core;
6 6
 
7 7
 use Phile\Exception\ServiceLocatorException;
Please login to merge, or discard this patch.