Passed
Pull Request — develop (#311)
by Schlaefer
02:21
created
lib/Phile/Core/Utility.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -128,7 +128,7 @@
 block discarded – undo
128 128
         $result = array();
129 129
         foreach ($files as $file) {
130 130
             /**
131
- * @var \SplFileInfo $file
131
+             * @var \SplFileInfo $file
132 132
 */
133 133
             $result[] = $file->getPathname();
134 134
         }
Please login to merge, or discard this patch.
lib/Phile/Core/Session.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -15,12 +15,12 @@
 block discarded – undo
15 15
 class Session
16 16
 {
17 17
     /**
18
- * @var bool mark if session is started
18
+     * @var bool mark if session is started
19 19
 */
20 20
     static public $isStarted = false;
21 21
 
22 22
     /**
23
- * @var string the session id
23
+     * @var string the session id
24 24
 */
25 25
     static public $sessionId = '';
26 26
 
Please login to merge, or discard this patch.
plugins/phile/errorHandler/Classes/Development.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -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/FilterIterator/ContentFileFilterIterator.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@
 block discarded – undo
21 21
     {
22 22
         /**
23 23
          * @var \SplFileInfo $this
24
-        */
24
+         */
25 25
         $ext = Registry::get('Phile_Settings')['content_ext'];
26 26
         return (preg_match('/^[^\.]{1}.*' . $ext . '/', $this->getFilename()) > 0);
27 27
     }
Please login to merge, or discard this patch.