Completed
Push — master ( 63a43a...66f803 )
by
unknown
55:43 queued 30:40
created
packages/Article/src/Service/ArticleServiceInterface.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -12,7 +12,6 @@
 block discarded – undo
12 12
     /**
13 13
      * Fetches a list of ArticleEntity models.
14 14
      *
15
-     * @param  array $params
16 15
      * @return \ArrayObject
17 16
      */
18 17
     public function fetchAllArticles($page, $limit);
Please login to merge, or discard this patch.
packages/Page/src/Entity/Page.php 1 patch
Doc Comments   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
     }
32 32
 
33 33
     /**
34
-     * @param mixed $is_wysiwyg_editor
34
+     * @param integer $is_wysiwyg_editor
35 35
      */
36 36
     public function setIsWysiwygEditor($is_wysiwyg_editor)
37 37
     {
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
     }
48 48
 
49 49
     /**
50
-     * @param mixed $slug
50
+     * @param string $slug
51 51
      */
52 52
     public function setSlug($slug)
53 53
     {
@@ -70,7 +70,7 @@  discard block
 block discarded – undo
70 70
     }
71 71
 
72 72
     /**
73
-     * @param mixed $is_active
73
+     * @param integer $is_active
74 74
      */
75 75
     public function setIsActive($is_active)
76 76
     {
@@ -86,7 +86,7 @@  discard block
 block discarded – undo
86 86
     }
87 87
 
88 88
     /**
89
-     * @param $page_uuid
89
+     * @param string $page_uuid
90 90
      */
91 91
     public function setPageUuid($page_uuid)
92 92
     {
@@ -102,7 +102,7 @@  discard block
 block discarded – undo
102 102
     }
103 103
 
104 104
     /**
105
-     * @param $page_id
105
+     * @param integer $page_id
106 106
      */
107 107
     public function setPageId($page_id)
108 108
     {
@@ -118,7 +118,7 @@  discard block
 block discarded – undo
118 118
     }
119 119
 
120 120
     /**
121
-     * @param mixed $title
121
+     * @param string $title
122 122
      */
123 123
     public function setTitle($title)
124 124
     {
@@ -134,7 +134,7 @@  discard block
 block discarded – undo
134 134
     }
135 135
 
136 136
     /**
137
-     * @param mixed $body
137
+     * @param string $body
138 138
      */
139 139
     public function setBody($body)
140 140
     {
@@ -156,7 +156,7 @@  discard block
 block discarded – undo
156 156
     }
157 157
 
158 158
     /**
159
-     * @param mixed $description
159
+     * @param string $description
160 160
      */
161 161
     public function setDescription($description)
162 162
     {
@@ -172,7 +172,7 @@  discard block
 block discarded – undo
172 172
     }
173 173
 
174 174
     /**
175
-     * @param mixed $main_img
175
+     * @param string $main_img
176 176
      */
177 177
     public function setMainImg($main_img)
178 178
     {
@@ -202,7 +202,7 @@  discard block
 block discarded – undo
202 202
     }
203 203
 
204 204
     /**
205
-     * @param mixed $is_homepage
205
+     * @param integer $is_homepage
206 206
      */
207 207
     public function setIsHomepage($is_homepage)
208 208
     {
Please login to merge, or discard this patch.