Completed
Push — master ( 0dc9d2...e0759a )
by Vladimir
02:11
created
src/Object/DynamicPageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * {@inheritdoc}
21 21
      */
22
-    public function __construct($filePath)
22
+    public function __construct ($filePath)
23 23
     {
24 24
         parent::__construct($filePath);
25 25
 
Please login to merge, or discard this patch.
src/Object/RepeaterPageView.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@
 block discarded – undo
19 19
     /**
20 20
      * {@inheritdoc}
21 21
      */
22
-    public function __construct($filePath)
22
+    public function __construct ($filePath)
23 23
     {
24 24
         parent::__construct($filePath);
25 25
 
Please login to merge, or discard this patch.
src/Engines/FrontMatter/ExpandedValue.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -14,12 +14,12 @@
 block discarded – undo
14 14
      */
15 15
     private $iterators;
16 16
 
17
-    public function __construct($string)
17
+    public function __construct ($string)
18 18
     {
19 19
         $this->evaluated = $string;
20 20
     }
21 21
 
22
-    public function __toString()
22
+    public function __toString ()
23 23
     {
24 24
         return $this->getEvaluated();
25 25
     }
Please login to merge, or discard this patch.
tests/Utilities/PHPUnit_Stakx_TestCase.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      */
31 31
     protected $fs;
32 32
 
33
-    public function setUp()
33
+    public function setUp ()
34 34
     {
35 35
         $this->dummyFile    = vfsStream::newFile('foo.html.twig');
36 36
         $this->rootDir      = vfsStream::setup();
Please login to merge, or discard this patch.
src/Object/JailObject.php 2 patches
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
         throw new \BadMethodCallException();
82 82
     }
83 83
 
84
-    public function __get($name)
84
+    public function __get ($name)
85 85
     {
86 86
         if ($this->object->isMagicGet($name))
87 87
         {
Please login to merge, or discard this patch.
Upper-Lower-Casing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,6 +88,6 @@
 block discarded – undo
88 88
             return $this->object->$name;
89 89
         }
90 90
 
91
-        return NULL;
91
+        return null;
92 92
     }
93 93
 }
94 94
\ No newline at end of file
Please login to merge, or discard this patch.