Passed
Pull Request — develop (#317)
by Schlaefer
03:58
created
lib/Phile/Plugin/AbstractPlugin.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 string plugin attributes
23
+     * @var string plugin attributes
24 24
 */
25 25
     private $plugin = [];
26 26
 
27 27
     /**
28
- * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
28
+     * @var array subscribed Phile events ['eventName' => 'classMethodToCall']
29 29
 */
30 30
     protected $events = [];
31 31
 
32 32
     /**
33
- * @var array the plugin settings
33
+     * @var array the plugin settings
34 34
 */
35 35
     protected $settings = [];
36 36
 
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 = Container::getInstance()->get('Phile_Config')->get('content_ext');
26 26
         return (preg_match('/^[^\.]{1}.*' . $ext . '/', $this->getFilename()) > 0);
27 27
     }
Please login to merge, or discard this patch.
plugins/phile/setupCheck/Classes/Plugin.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -22,7 +22,7 @@
 block discarded – undo
22 22
     protected $needsSetup;
23 23
 
24 24
     /**
25
- * @var array event subscription
25
+     * @var array event subscription
26 26
 */
27 27
     protected $events = [
28 28
         'config_loaded' => 'onConfigLoaded',
Please login to merge, or discard this patch.
plugins/mycompany/demoPlugin/Classes/Plugin.php 1 patch
Indentation   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -49,7 +49,7 @@
 block discarded – undo
49 49
      */
50 50
     public function outputPluginSettings($data = null)
51 51
     {
52
-          // you can access this plugins' config in $this->settings
52
+            // you can access this plugins' config in $this->settings
53 53
         $settings = $this->settings;
54 54
 
55 55
         $content = $data['content'];
Please login to merge, or discard this patch.