Passed
Push — master ( 664b37...040394 )
by Gabriel
02:14
created
src/Mapper.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -9,7 +9,7 @@  discard block
 block discarded – undo
9 9
      * @param array $data
10 10
      * @param string $entityClass
11 11
      * @param string $mapperClass
12
-     * @return Collection|mixed
12
+     * @return Collection
13 13
      */
14 14
     protected function create(Collection $collection, array $data, string $entityClass, string $mapperClass)
15 15
     {
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
      * @param array $data
26 26
      * @param string $entityClass
27 27
      * @param string $mapperClass
28
-     * @return Collection|mixed
28
+     * @return Collection
29 29
      */
30 30
     protected function replace(Collection $collection, array $data, string $entityClass, string $mapperClass)
31 31
     {
Please login to merge, or discard this patch.
src/Models/Inventory/Item.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -36,6 +36,9 @@
 block discarded – undo
36 36
         $this->attributes = clone $this->attributes;
37 37
     }
38 38
 
39
+    /**
40
+     * @return string
41
+     */
39 42
     public function getId(): ? string
40 43
     {
41 44
         return $this->id;
Please login to merge, or discard this patch.