Passed
Branch master (6dc83b)
by Oguzhan
02:11
created
src/ReflectionTrait.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -13,11 +13,11 @@  discard block
 block discarded – undo
13 13
 {
14 14
     public function getClassFromClassProperty($class, $property)
15 15
     {
16
-        if(!class_exists($class)) {
17
-            throw new \Exception($class. ' not found or does not exist');
16
+        if (!class_exists($class)) {
17
+            throw new \Exception($class . ' not found or does not exist');
18 18
         }
19 19
         
20
-        if(!property_exists($class, $property)) {
20
+        if (!property_exists($class, $property)) {
21 21
             throw new \Exception($class . ' has no property with the name ' . $property);
22 22
         }
23 23
     }
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
         if (preg_match('~\@var[\s]+([A-Za-z0-9\\\\]+)~', $comment, $matches)) {
37 37
             if ($includeNamespaces) {
38 38
                 if ($reflectionClass instanceof \ReflectionClass && !in_array($matches[1], HydratableTrait::$nonObjectTypes)) {
39
-                    if($reflectionClass->getNamespaceName()) {
39
+                    if ($reflectionClass->getNamespaceName()) {
40 40
                         return sprintf('\%s\%s', $reflectionClass->getNamespaceName(), $matches[1]);
41 41
                     } else {
42 42
                         return sprintf('\%s', $matches[1]);
Please login to merge, or discard this patch.
src/HydratableTrait.php 1 patch
Spacing   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -64,9 +64,7 @@  discard block
 block discarded – undo
64 64
 
65 65
             // Convert key to a propertyname in $this
66 66
             $propertyName = lcfirst(str_replace(' ', '', ucwords(str_replace('_', ' ', $itemKey))));
67
-            $propertyName = (property_exists($this, $propertyName)) ? $propertyName :
68
-                (property_exists($this, lcfirst($propertyName)) ? lcfirst($propertyName) :
69
-                    preg_replace_callback('/([A-Z])/', function ($match) {
67
+            $propertyName = (property_exists($this, $propertyName)) ? $propertyName : (property_exists($this, lcfirst($propertyName)) ? lcfirst($propertyName) : preg_replace_callback('/([A-Z])/', function ($match) {
70 68
                         return strtolower('_' . $match[1]);
71 69
                     }, lcfirst($propertyName))
72 70
                 );
@@ -87,7 +85,7 @@  discard block
 block discarded – undo
87 85
 
88 86
                     if (in_array($propertyClassName, self::$nonObjectTypes)) {
89 87
                         $this->setPropertyValue($propertyName, $itemValue, true);
90
-                    } elseif(interface_exists($propertyClassName)) {
88
+                    } elseif (interface_exists($propertyClassName)) {
91 89
                         // We cannot instantiate an interface, so we skip it
92 90
                         continue;
93 91
                     } else {
Please login to merge, or discard this patch.