Passed
Pull Request — master (#284)
by
unknown
04:45
created
plugins/phile/errorHandler/Classes/Plugin.php 2 patches
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -21,8 +21,8 @@
 block discarded – undo
21 21
  */
22 22
 class Plugin extends AbstractPlugin
23 23
 {
24
-    const HANDLER_ERROR_LOG        = 'error_log';
25
-    const HANDLER_DEVELOPMENT    = 'development';
24
+    const HANDLER_ERROR_LOG = 'error_log';
25
+    const HANDLER_DEVELOPMENT = 'development';
26 26
 
27 27
     protected $events = ['plugins_loaded' => 'onPluginsLoaded'];
28 28
 
Please login to merge, or discard this 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/errorHandler/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
- * the configuration file
4
- */
3
+     * the configuration file
4
+     */
5 5
 
6 6
 return array(
7 7
     'handler'             => \Phile\Plugin\Phile\ErrorHandler\Plugin::HANDLER_ERROR_LOG
Please login to merge, or discard this patch.
plugins/phile/setupCheck/Classes/Plugin.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\Phile\SetupCheck;
6 6
 
7 7
 use Phile\Core\Utility;
@@ -20,17 +20,17 @@  discard block
 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.
plugins/mycompany/demoPlugin/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/mycompany/demoPlugin/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.
plugins/phile/simpleFileDataPersistence/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.
simpleFileDataPersistence/Classes/Persistence/SimpleFileDataPersistence.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
- * persistence implementation class
4
- */
3
+     * persistence implementation class
4
+     */
5 5
 namespace Phile\Plugin\Phile\SimpleFileDataPersistence\Persistence;
6 6
 
7 7
 use Phile\ServiceLocator\PersistenceInterface;
@@ -17,7 +17,7 @@  discard block
 block discarded – undo
17 17
 class SimpleFileDataPersistence implements PersistenceInterface
18 18
 {
19 19
     /**
20
- * @var string $dataDirectory the data storage directory
20
+     * @var string $dataDirectory the data storage directory
21 21
 */
22 22
     protected $dataDirectory;
23 23
 
Please login to merge, or discard this patch.
plugins/phile/simpleFileDataPersistence/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.
plugins/phile/parserMeta/Classes/Parser/Meta.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@
 block discarded – undo
18 18
 class Meta implements MetaInterface
19 19
 {
20 20
     /**
21
- * @var array $config the configuration for this parser
21
+     * @var array $config the configuration for this parser
22 22
 */
23 23
     private $config;
24 24
 
Please login to merge, or discard this patch.