Completed
Pull Request — master (#284)
by
unknown
04:56
created
lib/Phile/Repository/Page.php 1 patch
Indentation   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -128,8 +128,8 @@
 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/Utility.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 Phile Utility class
4
- */
3
+     * The Phile Utility class
4
+     */
5 5
 namespace Phile\Core;
6 6
 
7 7
 /**
@@ -128,7 +128,7 @@  discard block
 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/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.
lib/Phile/Core/Router.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 Router class
4
- */
3
+     * the Router class
4
+     */
5 5
 
6 6
 namespace Phile\Core;
7 7
 
Please login to merge, or discard this patch.
lib/Phile/Core/Registry.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
- * Registry class
4
- */
3
+     * Registry class
4
+     */
5 5
 namespace Phile\Core;
6 6
 
7 7
 /**
Please login to merge, or discard this patch.
lib/Phile/Core/Session.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 Session class
4
- */
3
+     * The Session class
4
+     */
5 5
 namespace Phile\Core;
6 6
 
7 7
 /**
@@ -15,12 +15,12 @@  discard block
 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.
lib/Phile/Plugin/PluginRepository.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -16,12 +16,12 @@  discard block
 block discarded – undo
16 16
 {
17 17
 
18 18
     /**
19
- * @var array of AbstractPlugin
19
+     * @var array of AbstractPlugin
20 20
 */
21 21
     protected $plugins = [];
22 22
 
23 23
     /**
24
- * @var array errors during load; keys: 'message' and 'code'
24
+     * @var array errors during load; keys: 'message' and 'code'
25 25
 */
26 26
     protected $loadErrors = [];
27 27
 
@@ -82,7 +82,7 @@  discard block
 block discarded – undo
82 82
         }
83 83
 
84 84
         /**
85
- * @var \Phile\Plugin\AbstractPlugin $plugin
85
+         * @var \Phile\Plugin\AbstractPlugin $plugin
86 86
 */
87 87
         $plugin = new $pluginClassName;
88 88
         if (($plugin instanceof AbstractPlugin) === false) {
Please login to merge, or discard this patch.
lib/Phile/Plugin/AbstractPlugin.php 1 patch
Indentation   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2 2
 /**
3
- * Plugin class
4
- */
3
+     * Plugin class
4
+     */
5 5
 namespace Phile\Plugin;
6 6
 
7 7
 use Phile\Core\Event;
@@ -21,17 +21,17 @@  discard block
 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.
lib/Phile/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.