Completed
Push — master ( f5e07e...73da6c )
by Aleksandar
24:03
created
src/Article/src/Service/EventService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -63,6 +63,9 @@
 block discarded – undo
63 63
         return $this->getPagination($select, $page, $limit);
64 64
     }
65 65
 
66
+    /**
67
+     * @param integer $limit
68
+     */
66 69
     public function fetchLatest($limit)
67 70
     {
68 71
         return $this->articleEventsMapper->getLatest($limit);
Please login to merge, or discard this patch.
src/Article/src/Service/PostService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -203,6 +203,9 @@
 block discarded – undo
203 203
         return $this->articleMapper->getCategories($articleId);
204 204
     }
205 205
 
206
+    /**
207
+     * @param integer $limit
208
+     */
206 209
     public function getLatestWeb($limit)
207 210
     {
208 211
         return $this->articlePostsMapper->getLatest($limit);
Please login to merge, or discard this patch.
src/Article/src/Service/VideoService.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -91,6 +91,9 @@
 block discarded – undo
91 91
         return $this->getPagination($select, $page, $limit);
92 92
     }
93 93
 
94
+    /**
95
+     * @param integer $limit
96
+     */
94 97
     public function fetchLatest($limit)
95 98
     {
96 99
         return $this->articleVideosMapper->getLatest($limit);
Please login to merge, or discard this patch.
src/Category/src/Mapper/CategoryMapper.php 1 patch
Doc Comments   +8 added lines patch added patch discarded remove patch
@@ -32,6 +32,9 @@  discard block
 block discarded – undo
32 32
         $this->adapter = $adapter;
33 33
     }
34 34
 
35
+    /**
36
+     * @param string $id
37
+     */
35 38
     public function get($id)
36 39
     {
37 40
         return $this->select(['category_id' => $id])->current();
@@ -44,6 +47,11 @@  discard block
 block discarded – undo
44 47
         return $select;
45 48
     }
46 49
 
50
+    /**
51
+     * @param integer $limit
52
+     *
53
+     * @return \Zend\Db\Sql\Select
54
+     */
47 55
     public function getCategoryPostsSelect($categoryId = null, $limit = null)
48 56
     {
49 57
         $select = $this->getSql()->select()
Please login to merge, or discard this patch.