Passed
Push — master ( 75af5b...7c734b )
by Nicklas
02:14
created
src/Comment/Modules/Vote.php 1 patch
Doc Comments   +2 added lines, -4 removed lines patch added patch discarded remove patch
@@ -31,7 +31,7 @@  discard block
 block discarded – undo
31 31
      * @param string $sql
32 32
      * @param array $params
33 33
      *
34
-     * @return object
34
+     * @return Vote
35 35
      */
36 36
     public function getVote($sql, $params)
37 37
     {
@@ -50,8 +50,8 @@  discard block
 block discarded – undo
50 50
 
51 51
     /**
52 52
      * Checks if vote already exists, then either create new or update
53
-     * @param array $params
54 53
      *
54
+     * @param string $user
55 55
      * @return bool
56 56
      */
57 57
     public function saveVote($user, $parentId, $parentType, $voteType = "like")
@@ -86,7 +86,6 @@  discard block
 block discarded – undo
86 86
     /**
87 87
      * Control if user has already liked or not
88 88
      * @param string $user
89
-     * @param array $params
90 89
      *
91 90
      * @return bool
92 91
      */
@@ -108,7 +107,6 @@  discard block
 block discarded – undo
108 107
     /**
109 108
      * Control if user has already liked or not
110 109
      * @param string $user
111
-     * @param array $params
112 110
      *
113 111
      * @return bool
114 112
      */
Please login to merge, or discard this patch.
src/Comment/Modules/Question.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@  discard block
 block discarded – undo
30 30
     /**
31 31
      * Set ups the question
32 32
      * @param object $question
33
-     * @param array $param
34 33
      *
35 34
      * @return object
36 35
      */
@@ -53,7 +52,7 @@  discard block
 block discarded – undo
53 52
     /**
54 53
      * Returns post with markdown and gravatar
55 54
      * @param string $sql
56
-     * @param array $param
55
+     * @param array $params
57 56
      *
58 57
      * @return array
59 58
      */
Please login to merge, or discard this patch.
src/Comment/Modules/Post.php 1 patch
Doc Comments   +2 added lines, -3 removed lines patch added patch discarded remove patch
@@ -33,8 +33,6 @@  discard block
 block discarded – undo
33 33
 
34 34
     /**
35 35
      * Set ups the question
36
-     * @param object $question
37
-     * @param array $param
38 36
      *
39 37
      * @return object
40 38
      */
@@ -56,7 +54,7 @@  discard block
 block discarded – undo
56 54
     /**
57 55
      * Returns post with markdown and gravatar
58 56
      * @param string $sql
59
-     * @param array $param
57
+     * @param array $params
60 58
      *
61 59
      * @return array
62 60
      */
@@ -71,6 +69,7 @@  discard block
 block discarded – undo
71 69
     /**
72 70
      * return question/answer, three attributes are set, comments connected to them is an array.
73 71
      *
72
+     * @param string $sql
74 73
      * @return object
75 74
     */
76 75
     public function getPost($sql, $params)
Please login to merge, or discard this patch.
src/Comment/Modules/User.php 1 patch
Doc Comments   +1 added lines, -3 removed lines patch added patch discarded remove patch
@@ -61,7 +61,6 @@  discard block
 block discarded – undo
61 61
     /**
62 62
      * Sets up user
63 63
      * @param object $user
64
-     * @param array $param
65 64
      *
66 65
      * @return object
67 66
      */
@@ -99,7 +98,7 @@  discard block
 block discarded – undo
99 98
     /**
100 99
      * Returns post with markdown and gravatar
101 100
      * @param string $sql
102
-     * @param array $param
101
+     * @param array $params
103 102
      *
104 103
      * @return array
105 104
      */
@@ -143,7 +142,6 @@  discard block
 block discarded – undo
143 142
     /**
144 143
      * Returns gravatar link
145 144
      *
146
-     * @param string $email
147 145
      *
148 146
      * @return string as gravatar link
149 147
      */
Please login to merge, or discard this patch.