Completed
Pull Request — master (#284)
by
unknown
14:33 queued 11:32
created
plugins/phile/phpFastCache/Classes/Plugin.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
- * Plugin class
4
- */
3
+     * Plugin class
4
+     */
5 5
 
6 6
 /*
7 7
  * The namespace structure is Phile\Plugin\<vendor>\<plugin-name>
Please login to merge, or discard this patch.
plugins/phile/templateTwig/Classes/Plugin.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
- * Plugin class
4
- */
3
+     * Plugin class
4
+     */
5 5
 
6 6
 /*
7 7
  * The namespace structure is Phile\Plugin\<vendor>\<plugin-name>
Please login to merge, or discard this patch.
plugins/phile/templateTwig/config.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
- * config file
4
- */
3
+     * config file
4
+     */
5 5
 return [
6 6
     'setting-example' => 'I love Phile!'
7 7
 ];
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/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.
lib/Phile/Exception/PluginException.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
- * Plugin Exception
4
- */
3
+     * Plugin Exception
4
+     */
5 5
 
6 6
 namespace Phile\Exception;
7 7
 
Please login to merge, or discard this patch.
plugins/phile/setupCheck/Classes/Plugin.php 1 patch
Indentation   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -20,17 +20,17 @@
 block discarded – undo
20 20
 {
21 21
 
22 22
     /**
23
- * @var global Phile config
23
+     * @var global Phile config
24 24
 */
25 25
     protected $config;
26 26
 
27 27
     /**
28
- * @var bool Phile installation needs setup
28
+     * @var bool Phile installation needs setup
29 29
 */
30 30
     protected $needsSetup = true;
31 31
 
32 32
     /**
33
- * @var array event subscription
33
+     * @var array event subscription
34 34
 */
35 35
     protected $events = [
36 36
     'config_loaded' => 'onConfigLoaded',
Please login to merge, or discard this patch.