Passed
Push — develop ( 7d4a99...39bf77 )
by nguereza
05:11 queued 03:07
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.