Completed
Push — master ( 79f0f5...c28549 )
by Nicklas
02:38
created
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/ProfileController.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -15,7 +15,6 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Get details on item to load form with.
17 17
      *
18
-     * @param integer $id get details on item with id.
19 18
      *
20 19
      * @return object true if okey, false if something went wrong.
21 20
      */
@@ -58,7 +57,6 @@  discard block
 block discarded – undo
58 57
     /**
59 58
      * Description.
60 59
      *
61
-     * @param datatype $variable Description
62 60
      *
63 61
      * @throws Exception
64 62
      *
@@ -85,7 +83,6 @@  discard block
 block discarded – undo
85 83
     /**
86 84
      * Description.
87 85
      *
88
-     * @param datatype $variable Description
89 86
      *
90 87
      * @throws Exception
91 88
      *
Please login to merge, or discard this patch.
src/Comment/Modules/Vote.php 1 patch
Doc Comments   +1 added lines, -3 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
     {
@@ -51,7 +51,6 @@  discard block
 block discarded – undo
51 51
     /**
52 52
      * Control if user has already liked or not
53 53
      * @param string $user
54
-     * @param array $params
55 54
      *
56 55
      * @return bool
57 56
      */
@@ -78,7 +77,6 @@  discard block
 block discarded – undo
78 77
     /**
79 78
      * Control if user has already liked or not
80 79
      * @param string $user
81
-     * @param array $params
82 80
      *
83 81
      * @return bool
84 82
      */
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.