Completed
Push — master ( 7e748b...ca1854 )
by Karsten
02:03
created
src/Slumber/Core/Codec/Property/ObjectMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -71,7 +71,7 @@
 block discarded – undo
71 71
      */
72 72
     public function awake(Awaker $awaker, $value)
73 73
     {
74
-        if ($value === null || (! \is_array($value) && ! $value instanceof \ArrayAccess)) {
74
+        if ($value === null || (!\is_array($value) && !$value instanceof \ArrayAccess)) {
75 75
             return null;
76 76
         }
77 77
 
Please login to merge, or discard this patch.
src/Slumber/Core/Codec/Property/LocalDateMapper.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -75,7 +75,7 @@
 block discarded – undo
75 75
             }
76 76
 
77 77
             if (IsDateString::isValidDateString($value['date'])) {
78
-                return new LocalDate($value['date'],  $tz);
78
+                return new LocalDate($value['date'], $tz);
79 79
             }
80 80
 
81 81
             return null;
Please login to merge, or discard this patch.
src/Slumber/Core/Codec/ArrayCodec.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -77,11 +77,11 @@  discard block
 block discarded – undo
77 77
      */
78 78
     public function awake($data, $cls)
79 79
     {
80
-        if ($data === null || ! \is_array($data)) {
80
+        if ($data === null || !\is_array($data)) {
81 81
             return null;
82 82
         }
83 83
 
84
-        if (! $cls instanceof \ReflectionClass) {
84
+        if (!$cls instanceof \ReflectionClass) {
85 85
             $cls = new \ReflectionClass($cls);
86 86
         }
87 87
 
@@ -96,11 +96,11 @@  discard block
 block discarded – undo
96 96
      */
97 97
     public function awakeList($data, $cls)
98 98
     {
99
-        if (! \is_array($data) && ! $data instanceof \Traversable) {
99
+        if (!\is_array($data) && !$data instanceof \Traversable) {
100 100
             return [];
101 101
         }
102 102
 
103
-        if (! $cls instanceof \ReflectionClass) {
103
+        if (!$cls instanceof \ReflectionClass) {
104 104
             $cls = new \ReflectionClass($cls);
105 105
         }
106 106
 
Please login to merge, or discard this patch.
src/Creator/CreatePolymorphic.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -41,7 +41,7 @@
 block discarded – undo
41 41
      */
42 42
     public function create($data = null)
43 43
     {
44
-        if (! \is_array($data) && ! $data instanceof \ArrayAccess) {
44
+        if (!\is_array($data) && !$data instanceof \ArrayAccess) {
45 45
             return null;
46 46
         }
47 47
 
Please login to merge, or discard this patch.
src/Slumber/Core/LookUp/AnnotatedEntityConfigReader.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -156,7 +156,7 @@
 block discarded – undo
156 156
 
157 157
             $propertyName = $property->getName();
158 158
 
159
-            if (! isset($result[$propertyName])) {
159
+            if (!isset($result[$propertyName])) {
160 160
 
161 161
                 $context = $this->getPropertyValidationContext($class, $property);
162 162
                 $marker  = $this->getPropertyAnnotationsOfType($context);
Please login to merge, or discard this patch.
src/Slumber/Annotation/Slumber/AsCollection.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -70,9 +70,9 @@  discard block
 block discarded – undo
70 70
 
71 71
     public function validateCollectionParam(ValidationContext $context)
72 72
     {
73
-        if (! empty ($this->collection)) {
73
+        if (!empty ($this->collection)) {
74 74
 
75
-            if (! class_exists($this->collection)) {
75
+            if (!class_exists($this->collection)) {
76 76
                 throw $this->createValidationException(
77 77
                     $context,
78 78
                     "The collection class '{$this->collection}' does not exist'"
@@ -81,7 +81,7 @@  discard block
 block discarded – undo
81 81
 
82 82
             $expectedType = Collection::class;
83 83
 
84
-            if (! is_a($this->collection, $expectedType, true)) {
84
+            if (!is_a($this->collection, $expectedType, true)) {
85 85
                 throw $this->createValidationException(
86 86
                     $context,
87 87
                     "The collection class '{$this->collection}' must be instance of '{$expectedType}'"
Please login to merge, or discard this patch.