Passed
Push — master ( 356755...14835f )
by Gerrit
04:25
created
Mapping/ObjectMappingInterface.php 1 patch
Doc Comments   +15 added lines patch added patch discarded remove patch
@@ -21,6 +21,9 @@  discard block
 block discarded – undo
21 21
 
22 22
     public function getClassName(): string;
23 23
 
24
+    /**
25
+     * @return null|Column
26
+     */
24 27
     public function getDBALColumn(): ?Column;
25 28
 
26 29
     /**
@@ -28,12 +31,24 @@  discard block
 block discarded – undo
28 31
      */
29 32
     public function getFieldMappings(): array;
30 33
 
34
+    /**
35
+     * @return null|CallDefinitionInterface
36
+     */
31 37
     public function getFactory(): ?CallDefinitionInterface;
32 38
 
39
+    /**
40
+     * @return null|CallDefinitionInterface
41
+     */
33 42
     public function getSerializer(): ?CallDefinitionInterface;
34 43
 
44
+    /**
45
+     * @return null|string
46
+     */
35 47
     public function getId(): ?string;
36 48
 
49
+    /**
50
+     * @return null|string
51
+     */
37 52
     public function getReferencedId(): ?string;
38 53
 
39 54
 }
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
@@ -138,7 +138,7 @@
 block discarded – undo
138 138
      * @param array<MappingInterface> $argumentMappings
139 139
      * @param array<scalar>           $dataFromAdditionalColumns
140 140
      *
141
-     * @return array<mixed>
141
+     * @return callable
142 142
      */
143 143
     private function resolveArguments(
144 144
         array $argumentMappings,
Please login to merge, or discard this patch.
ValueResolver/CallDefinitionExecuterInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -19,7 +19,6 @@
 block discarded – undo
19 19
 {
20 20
 
21 21
     /**
22
-     * @param object                  $entity
23 22
      * @param array<scalar>           $dataFromAdditionalColumns
24 23
      *
25 24
      * @return mixed
Please login to merge, or discard this patch.