Completed
Push — master ( 9137df...84432d )
by
unknown
09:58
created
src/Domain/Model/Repository/Filter.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@  discard block
 block discarded – undo
50 50
     }
51 51
 
52 52
     /**
53
-     * @param $name
53
+     * @param integer $name
54 54
      *
55 55
      * @return BaseFilterInterface
56 56
      */
@@ -92,7 +92,7 @@  discard block
 block discarded – undo
92 92
     }
93 93
 
94 94
     /**
95
-     * @param $name
95
+     * @param integer $name
96 96
      */
97 97
     protected function clearCollection($name)
98 98
     {
Please login to merge, or discard this patch.
src/Domain/Model/Repository/Pageable.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -42,8 +42,8 @@
 block discarded – undo
42 42
     /**
43 43
      * Pageable constructor.
44 44
      *
45
-     * @param                      $pageNumber
46
-     * @param                      $pageSize
45
+     * @param                      integer $pageNumber
46
+     * @param                      integer $pageSize
47 47
      * @param SortInterface|null   $sort
48 48
      * @param FilterInterface|null $filter
49 49
      * @param FieldsInterface|null $fields
Please login to merge, or discard this patch.
src/Domain/Model/Repository/Page.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -53,8 +53,8 @@  discard block
 block discarded – undo
53 53
      * Page constructor.
54 54
      *
55 55
      * @param array           $elements
56
-     * @param                 $totalElements
57
-     * @param                 $pageNumber
56
+     * @param                 integer $totalElements
57
+     * @param                 integer $pageNumber
58 58
      * @param                 $totalPages
59 59
      * @param SortInterface   $sort
60 60
      * @param FilterInterface $filter
@@ -193,7 +193,7 @@  discard block
 block discarded – undo
193 193
     }
194 194
 
195 195
     /**
196
-     * @return FieldsInterface
196
+     * @return null|FieldsInterface
197 197
      */
198 198
     public function getFields()
199 199
     {
Please login to merge, or discard this patch.