Passed
Pull Request — master (#284)
by
unknown
04:45
created
lib/Phile/FilterIterator/ContentFileFilterIterator.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * the filter class for content files
4
- */
3
+     * the filter class for content files
4
+     */
5 5
 namespace Phile\FilterIterator;
6 6
 
7 7
 /**
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     public function accept()
19 19
     {
20 20
         /**
21
- * @var \SplFileInfo $this
21
+         * @var \SplFileInfo $this
22 22
 */
23 23
         return (preg_match('/^[^\.]{1}.*'.CONTENT_EXT.'/', $this->getFilename()) > 0);
24 24
     }
Please login to merge, or discard this patch.
lib/Phile/Session.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 Session class
4
- */
3
+     * The Session class
4
+     */
5 5
 namespace Phile;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/Model/Meta.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Model class
4
- */
3
+     * Model class
4
+     */
5 5
 namespace Phile\Model;
6 6
 
7 7
 use Phile\Core\Event;
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
     protected function parseRawData($rawData)
82 82
     {
83 83
         /**
84
- * @var \Phile\ServiceLocator\MetaInterface $metaParser
84
+         * @var \Phile\ServiceLocator\MetaInterface $metaParser
85 85
 */
86 86
         $metaParser = ServiceLocator::getService('Phile_Parser_Meta');
87 87
         $data       = $metaParser->parse($rawData);
Please login to merge, or discard this patch.
lib/Phile/Repository/Page.php 1 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/Core/Event.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 Event class
4
- */
3
+     * The Event class
4
+     */
5 5
 namespace Phile;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
plugins/phile/errorHandler/Classes/Development.php 1 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 Development Error Handler
4
- */
3
+         * The Development Error Handler
4
+         */
5 5
 
6 6
 namespace Phile\Plugin\Phile\ErrorHandler;
7 7
 
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 {
21 21
 
22 22
     /**
23
- * @var array settings
23
+     * @var array settings
24 24
 */
25 25
     protected $settings;
26 26
 
@@ -289,7 +289,7 @@  discard block
 block discarded – undo
289 289
 
290 290
     /**
291 291
      * link the class or method to the API or return the method name
292
-  *
292
+     *
293 293
      * @param $class
294 294
      * @param $method
295 295
      *
Please login to merge, or discard this patch.
lib/Phile/Plugin/AbstractPlugin.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -21,17 +21,17 @@
 block discarded – undo
21 21
 {
22 22
 
23 23
     /**
24
- * @var string plugin attributes
24
+     * @var string plugin attributes
25 25
 */
26 26
     protected $plugin = [];
27 27
 
28 28
     /**
29
- * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
29
+     * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
30 30
 */
31 31
     protected $events = [];
32 32
 
33 33
     /**
34
- * @var array the plugin settings
34
+     * @var array the plugin settings
35 35
 */
36 36
     protected $settings = [];
37 37
 
Please login to merge, or discard this patch.