Passed
Push — master ( 0f723a...b5e9a2 )
by Nicklas
03:09
created
src/Comment/Modules/Comment.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * Returns post with markdown and gravatar
52 52
      * @param string $sql
53
-     * @param array $param
53
+     * @param array $params
54 54
      *
55 55
      * @return array
56 56
      */
Please login to merge, or discard this patch.
src/Comment/HTMLForm/Profile/UpdateProfileSecurityForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Constructor injects with DI container.
17 17
      *
18
-     * @param Anax\DI\DIInterface $di a service container
18
+     * @param DIInterface $di a service container
19 19
      */
20 20
     public function __construct(DIInterface $di)
21 21
     {
Please login to merge, or discard this patch.
src/Comment/HTMLForm/Comment/CreateQuestionForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@
 block discarded – undo
15 15
     /**
16 16
      * Constructor injects with DI container.
17 17
      *
18
-     * @param Anax\DI\DIInterface $di a service container
18
+     * @param DIInterface $di a service container
19 19
      */
20 20
     public function __construct(DIInterface $di)
21 21
     {
Please login to merge, or discard this patch.
src/Comment/Modules/Question.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -50,7 +50,7 @@
 block discarded – undo
50 50
     /**
51 51
      * Returns post with markdown and gravatar
52 52
      * @param string $sql
53
-     * @param array $param
53
+     * @param array $params
54 54
      *
55 55
      * @return array
56 56
      */
Please login to merge, or discard this patch.
src/Comment/HTMLForm/Comment/CreateAnswerForm.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,7 @@
 block discarded – undo
14 14
     /**
15 15
      * Constructor injects with DI container.
16 16
      *
17
-     * @param Anax\DI\DIInterface $di a service container
17
+     * @param DIInterface $di a service container
18 18
      */
19 19
     public function __construct(DIInterface $di, $questionId)
20 20
     {
Please login to merge, or discard this patch.
src/Comment/Modules/User.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
     /**
30 30
      * Returns post with markdown and gravatar
31 31
      * @param string $sql
32
-     * @param array $param
32
+     * @param array $params
33 33
      *
34 34
      * @return array
35 35
      */
@@ -94,7 +94,6 @@  discard block
 block discarded – undo
94 94
     /**
95 95
      * Returns gravatar link
96 96
      *
97
-     * @param string $email
98 97
      *
99 98
      * @return string as gravatar link
100 99
      */
Please login to merge, or discard this patch.
src/Comment/FrontController.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -18,7 +18,7 @@  discard block
 block discarded – undo
18 18
     /**
19 19
      * View specific question and create answer form
20 20
      *
21
-     * @return void
21
+     * @return boolean
22 22
      */
23 23
     public function postComment($id)
24 24
     {
@@ -39,7 +39,7 @@  discard block
 block discarded – undo
39 39
     /**
40 40
      * View specific question and create answer form
41 41
      *
42
-     * @return void
42
+     * @return boolean
43 43
      */
44 44
     public function postVote()
45 45
     {
@@ -64,7 +64,7 @@  discard block
 block discarded – undo
64 64
     /**
65 65
      * View specific question and create answer form
66 66
      *
67
-     * @return void
67
+     * @return boolean
68 68
      */
69 69
     public function postAcceptedAnswer($id)
70 70
     {
Please login to merge, or discard this patch.
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/HTMLForm/Admin/EditUserForm.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -14,7 +14,8 @@
 block discarded – undo
14 14
     /**
15 15
      * Constructor injects with DI container.
16 16
      *
17
-     * @param Anax\DI\DIInterface $di a service container
17
+     * @param DIInterface $di a service container
18
+     * @param integer $id
18 19
      */
19 20
     public function __construct(DIInterface $di, $id)
20 21
     {
Please login to merge, or discard this patch.