Passed
Push — develop ( 20eda2...dbabb5 )
by nguereza
05:35 queued 04:00
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
     /**
67 66
      * @codeCoverageIgnore
@@ -251,8 +250,7 @@  discard block
 block discarded – undo
251 250
      * @param string $name
252 251
      * @return mixed
253 252
      */
254
-    public function getPropertyValue(string $class, object $instance, string $name)
255
-    {
253
+    public function getPropertyValue(string $class, object $instance, string $name) {
256 254
         $reflection = $this->getPrivateProtectedAttribute($class, $name);
257 255
         return $reflection->getValue($instance);
258 256
     }
@@ -265,8 +263,7 @@  discard block
 block discarded – undo
265 263
      * @param mixed $value
266 264
      * @return void
267 265
      */
268
-    public function setPropertyValue(string $class, object $instance, string $name, $value)
269
-    {
266
+    public function setPropertyValue(string $class, object $instance, string $name, $value) {
270 267
         $reflection = $this->getPrivateProtectedAttribute($class, $name);
271 268
         $reflection->setValue($instance, $value);
272 269
     }
Please login to merge, or discard this patch.