Passed
Push — develop ( a3afc7...bb6909 )
by nguereza
01:39
created
src/PlatineTestCase.php 1 patch
Braces   +3 added lines, -6 removed lines patch added patch discarded remove patch
@@ -60,8 +60,7 @@  discard block
 block discarded – undo
60 60
  * @class PlatineTestCase
61 61
  * @package Platine\Dev
62 62
  */
63
-class PlatineTestCase extends TestCase
64
-{
63
+class PlatineTestCase extends TestCase {
65 64
     /**
66 65
      * @codeCoverageIgnore
67 66
      * @return void
@@ -250,8 +249,7 @@  discard block
 block discarded – undo
250 249
      * @param string $name
251 250
      * @return mixed
252 251
      */
253
-    public function getPropertyValue(string $class, object $instance, string $name)
254
-    {
252
+    public function getPropertyValue(string $class, object $instance, string $name) {
255 253
         $reflection = $this->getPrivateProtectedAttribute($class, $name);
256 254
         return $reflection->getValue($instance);
257 255
     }
@@ -264,8 +262,7 @@  discard block
 block discarded – undo
264 262
      * @param mixed $value
265 263
      * @return void
266 264
      */
267
-    public function setPropertyValue(string $class, object $instance, string $name, $value)
268
-    {
265
+    public function setPropertyValue(string $class, object $instance, string $name, $value) {
269 266
         $reflection = $this->getPrivateProtectedAttribute($class, $name);
270 267
         $reflection->setValue($instance, $value);
271 268
     }
Please login to merge, or discard this patch.
src/PlatineFileSystem.php 1 patch
Braces   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -56,13 +56,11 @@
 block discarded – undo
56 56
  * @class PlatineFileSystem
57 57
  * @package Platine\Dev
58 58
  */
59
-class PlatineFileSystem extends FileSystem
60
-{
59
+class PlatineFileSystem extends FileSystem {
61 60
     /**
62 61
      * Create new instance
63 62
      */
64
-    public function __construct()
65
-    {
63
+    public function __construct() {
66 64
         $this->scheme = 'platine-php';
67 65
 
68 66
         /* injecting components */
Please login to merge, or discard this patch.