Completed
Push — master ( 551363...02d8a2 )
by Nicklas
01:57
created
src/Comment/AdminController.php 1 patch
Doc Comments   -3 removed lines patch added patch discarded remove patch
@@ -55,7 +55,6 @@  discard block
 block discarded – undo
55 55
     /**
56 56
      * Description.
57 57
      *
58
-     * @param datatype $variable Description
59 58
      *
60 59
      * @throws Exception
61 60
      *
@@ -78,7 +77,6 @@  discard block
 block discarded – undo
78 77
     /**
79 78
      * Description.
80 79
      *
81
-     * @param datatype $variable Description
82 80
      *
83 81
      * @throws Exception
84 82
      *
@@ -100,7 +98,6 @@  discard block
 block discarded – undo
100 98
     /**
101 99
      * Description.
102 100
      *
103
-     * @param datatype $variable Description
104 101
      *
105 102
      * @throws Exception
106 103
      *
Please login to merge, or discard this patch.
src/Comment/HTMLForm/EditCommentForm.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -15,7 +15,7 @@  discard block
 block discarded – undo
15 15
     /**
16 16
      * Constructor injects with DI container and the id to update.
17 17
      *
18
-     * @param Anax\DI\DIInterface $di a service container
18
+     * @param DIInterface $di a service container
19 19
      * @param integer             $id to update
20 20
      */
21 21
     public function __construct(DIInterface $di, $id)
@@ -61,7 +61,7 @@  discard block
 block discarded – undo
61 61
      *
62 62
      * @param integer $id get details on item with id.
63 63
      *
64
-     * @return object true if okey, false if something went wrong.
64
+     * @return Comment true if okey, false if something went wrong.
65 65
      */
66 66
     public function getCommentDetails($id)
67 67
     {
@@ -76,7 +76,7 @@  discard block
 block discarded – undo
76 76
      * get details for the user based on sessio
77 77
      *
78 78
      *
79
-     * @return object the user
79
+     * @return boolean the user
80 80
      */
81 81
     public function controlAuthority()
82 82
     {
@@ -97,7 +97,7 @@  discard block
 block discarded – undo
97 97
      * Callback for submit-button which should return true if it could
98 98
      * carry out its work and false if something failed.
99 99
      *
100
-     * @return void
100
+     * @return false|null
101 101
      */
102 102
     public function callbackDelete()
103 103
     {
@@ -117,7 +117,7 @@  discard block
 block discarded – undo
117 117
      * Callback for submit-button which should return true if it could
118 118
      * carry out its work and false if something failed.
119 119
      *
120
-     * @return void
120
+     * @return false|null
121 121
      */
122 122
     public function callbackSubmit()
123 123
     {
Please login to merge, or discard this patch.
src/Comment/HTMLForm/EditUserForm.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, $id)
20 20
     {
Please login to merge, or discard this patch.
src/Comment/User.php 1 patch
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -40,7 +40,6 @@
 block discarded – undo
40 40
     /**
41 41
      * Returns gravatar link
42 42
      *
43
-     * @param string $email
44 43
      *
45 44
      * @return string as gravatar link
46 45
      */
Please login to merge, or discard this patch.
src/Comment/UserController.php 1 patch
Doc Comments   +1 added lines, -5 removed lines patch added patch discarded remove patch
@@ -31,9 +31,8 @@  discard block
 block discarded – undo
31 31
     /**
32 32
      * Get details on item to load form with.
33 33
      *
34
-     * @param integer $id get details on item with id.
35 34
      *
36
-     * @return object true if okey, false if something went wrong.
35
+     * @return User true if okey, false if something went wrong.
37 36
      */
38 37
     public function getUserDetails($name)
39 38
     {
@@ -92,7 +91,6 @@  discard block
 block discarded – undo
92 91
     /**
93 92
      * Description.
94 93
      *
95
-     * @param datatype $variable Description
96 94
      *
97 95
      * @throws Exception
98 96
      *
@@ -115,7 +113,6 @@  discard block
 block discarded – undo
115 113
     /**
116 114
      * Description.
117 115
      *
118
-     * @param datatype $variable Description
119 116
      *
120 117
      * @throws Exception
121 118
      *
@@ -136,7 +133,6 @@  discard block
 block discarded – undo
136 133
     /**
137 134
      * Description.
138 135
      *
139
-     * @param datatype $variable Description
140 136
      *
141 137
      * @throws Exception
142 138
      *
Please login to merge, or discard this patch.