Passed
Push — master ( a68125...6be800 )
by Aleksandr
02:05
created
Serializer/Normalizer/JsonApiNormalizer.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -61,7 +61,7 @@
 block discarded – undo
61 61
      * @param string $type The class to which the data should be denormalized
62 62
      * @param string $format The format being deserialized from
63 63
      *
64
-     * @return bool
64
+     * @return boolean|null
65 65
      */
66 66
     public function supportsDenormalization($data, $type, $format = null)
67 67
     {
Please login to merge, or discard this patch.
Annotation/Attribute.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -34,7 +34,7 @@
 block discarded – undo
34 34
      */
35 35
     public function __construct(array $values)
36 36
     {
37
-        if(!array_key_exists('name', $values )){
37
+        if (!array_key_exists('name', $values)) {
38 38
             $this->name = null;
39 39
         }
40 40
 //        var_dump($values);
Please login to merge, or discard this patch.