Completed
Push — master ( 203e38...2cdd54 )
by Gerrit
13:04
created
Mapping/ObjectMappingInterface.php 1 patch
Doc Comments   +6 added lines patch added patch discarded remove patch
@@ -25,8 +25,14 @@
 block discarded – undo
25 25
      */
26 26
     public function getFieldMappings(): array;
27 27
 
28
+    /**
29
+     * @return null|CallDefinitionInterface
30
+     */
28 31
     public function getFactory(): ?CallDefinitionInterface;
29 32
 
33
+    /**
34
+     * @return null|CallDefinitionInterface
35
+     */
30 36
     public function getSerializer(): ?CallDefinitionInterface;
31 37
 
32 38
 }
Please login to merge, or discard this patch.
Tests/ValueObjectExample.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -59,6 +59,9 @@
 block discarded – undo
59 59
         return [$this->scalarValue, $this->lorem, $this->dolor];
60 60
     }
61 61
 
62
+    /**
63
+     * @param string $amet
64
+     */
62 65
     public function setAmet($amet)
63 66
     {
64 67
         $this->amet = $amet;
Please login to merge, or discard this patch.
ValueResolver/CallDefinitionExecuter.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -111,7 +111,7 @@
 block discarded – undo
111 111
      * @param object                  $entity
112 112
      * @param array<scalar>           $dataFromAdditionalColumns
113 113
      *
114
-     * @return array<mixed>
114
+     * @return callable
115 115
      */
116 116
     private function resolveArguments(
117 117
         array $argumentMappings,
Please login to merge, or discard this patch.