Completed
Push — develop ( 9c5810...353f64 )
by Frank
05:44
created
lib/Phile/FilterIterator/ContentFileFilterIterator.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -20,6 +20,6 @@
 block discarded – undo
20 20
         /**
21 21
  * @var \SplFileInfo $this
22 22
 */
23
-        return (preg_match('/^[^\.]{1}.*'.CONTENT_EXT.'/', $this->getFilename()) > 0);
23
+        return (preg_match('/^[^\.]{1}.*' . CONTENT_EXT . '/', $this->getFilename()) > 0);
24 24
     }
25 25
 }
Please login to merge, or discard this 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/FilterIterator/GeneralFileFilterIterator.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 filter class for all files
4
- */
3
+     * the filter class for all files
4
+     */
5 5
 namespace Phile\FilterIterator;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/Bootstrap.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -102,7 +102,7 @@
 block discarded – undo
102 102
         spl_autoload_extensions(".php");
103 103
         // load phile core
104 104
         spl_autoload_register(
105
-            function ($className) {
105
+            function($className) {
106 106
                 $fileName = LIB_DIR . str_replace("\\", DS, $className) . '.php';
107 107
                 if (file_exists($fileName)) {
108 108
                     include_once $fileName;
Please login to merge, or discard this patch.
lib/Phile/Model/Page.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 page model
4
- */
3
+     * The page model
4
+     */
5 5
 namespace Phile\Model;
6 6
 
7 7
 use Phile\Core\Router;
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/ParserInterface.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 ServiceLocator interface
4
- */
3
+     * The ServiceLocator 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.