Passed
Pull Request — develop (#317)
by Schlaefer
03:58
created
lib/Phile/Phile.php 1 patch
Unused Use Statements   -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@
 block discarded – undo
15 15
 use Phile\Core\Router;
16 16
 use Phile\Model\Page;
17 17
 use Phile\Repository\Page as Repository;
18
-
19 18
 use Interop\Http\Server\MiddlewareInterface;
20 19
 use Interop\Http\Server\RequestHandlerInterface;
21 20
 use Psr\Http\Message\ResponseInterface;
Please login to merge, or discard this patch.
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.
config/container.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -10,8 +10,6 @@
 block discarded – undo
10 10
  * @license http://opensource.org/licenses/MIT
11 11
  */
12 12
 
13
-use Psr\Http\Message\ServerRequestInterface;
14
-
15 13
 $config = [
16 14
     'types' => [
17 15
         'Phile_App'              => Phile\Phile::class,
Please login to merge, or discard this patch.