Passed
Branch master (e94900)
by judicael
03:54
created
bundles/lib/Date.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -192,8 +192,6 @@
 block discarded – undo
192 192
 	 * set name of image
193 193
 	 *
194 194
 	 * @access public
195
-	 * @param  int $iWeek number of week
196
-	 * @param  int $iYear year
197 195
 	 * @return array
198 196
 	 */
199 197
 	public static function getActualMiddleWeek() : array
Please login to merge, or discard this patch.
bundles/lib/Facebook.php 1 patch
Doc Comments   +5 added lines, -5 removed lines patch added patch discarded remove patch
@@ -150,7 +150,7 @@  discard block
 block discarded – undo
150 150
 	 * add one scope
151 151
 	 *
152 152
 	 * @access public
153
-	 * @return object
153
+	 * @return Object
154 154
 	 */
155 155
 	public function getUserInfo() : object
156 156
 	{
@@ -163,7 +163,7 @@  discard block
 block discarded – undo
163 163
 	 *
164 164
 	 * @access public
165 165
 	 * @param  string $sName name to call
166
-	 * @return object
166
+	 * @return Object
167 167
 	 * @throws Exception
168 168
 	 */
169 169
 	public function getInfo(string $sName) : object
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 	 *
186 186
 	 * @access public
187 187
 	 * @param  string $sFql fql query
188
-	 * @return object
188
+	 * @return Object
189 189
 	 * @throws Exception
190 190
 	 */
191 191
 	public function getInfoByFql(string $sFql) : object
@@ -217,7 +217,7 @@  discard block
 block discarded – undo
217 217
 	 * @param string $sImg
218 218
 	 * @param string $sName
219 219
 	 * @param string $sDescription
220
-	 * @return object
220
+	 * @return Object
221 221
 	 * @throws Exception
222 222
 	 */
223 223
 	public function publishWallPost(string $sMessage, string $sLink, string $sImg, string $sName, string $sDescription) : object
@@ -250,7 +250,7 @@  discard block
 block discarded – undo
250 250
 	 * @param string $sLink
251 251
 	 * @param string $sImg
252 252
 	 * @param string $sDescription
253
-	 * @return object
253
+	 * @return Object
254 254
 	 * @throws Exception
255 255
 	 */
256 256
 	public function publishMyWallPost(string $sPageId, string $sMessage, string $sLink, string $sImg, string $sDescription) : object
Please login to merge, or discard this patch.
bundles/lib/Form.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -304,7 +304,7 @@  discard block
 block discarded – undo
304 304
 	 * get global object form
305 305
 	 *
306 306
 	 * @access public
307
-	 * @return object
307
+	 * @return \stdClass
308 308
 	 */
309 309
 	public function getFormInObject()
310 310
 	{
@@ -411,7 +411,6 @@  discard block
 block discarded – undo
411 411
 	 * set the entity to synchronize with the formular
412 412
 	 *
413 413
 	 * @access public
414
-	 * @param  string $sSeparator separator between the fields
415 414
 	 * @param  int $iId id of the primary key
416 415
 	 * @return \Venus\lib\Form
417 416
 	 */
Please login to merge, or discard this patch.
bundles/lib/Form/Container.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -69,7 +69,7 @@
 block discarded – undo
69 69
 	 * get the Value
70 70
 	 *
71 71
 	 * @access public
72
-	 * @return object
72
+	 * @return \stdClass
73 73
 	 */
74 74
 	public function createView()
75 75
 	{
Please login to merge, or discard this patch.
bundles/lib/Form/Input.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -151,7 +151,7 @@
 block discarded – undo
151 151
 	 *
152 152
 	 * @access public
153 153
 	 * @param  string $sType type of input;
154
-	 * @return bool
154
+	 * @return string
155 155
 	 */
156 156
 	public function isClicked(string $sType) : string
157 157
 	{
Please login to merge, or discard this patch.
bundles/lib/Form/Radio.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 	 *
97 97
 	 * @access public
98 98
 	 * @param  string $sValue Value of input;
99
-	 * @return \Venus\lib\Form\Input
99
+	 * @return Radio
100 100
 	 */
101 101
 	public function setValue(string $sValue) : Input
102 102
 	{
@@ -120,7 +120,7 @@  discard block
 block discarded – undo
120 120
 	 *
121 121
 	 * @access public
122 122
 	 * @param  string $sValueChecked Value of input;
123
-	 * @return \Venus\lib\Form\Input
123
+	 * @return Radio
124 124
 	 */
125 125
 	public function setValueChecked(string $sValueChecked) : Input
126 126
 	{
@@ -144,7 +144,7 @@  discard block
 block discarded – undo
144 144
 	 *
145 145
 	 * @access public
146 146
 	 * @param  string $sLabel Label of input;
147
-	 * @return \Venus\lib\Form\Input
147
+	 * @return Radio
148 148
 	 */
149 149
 	public function setLabel(string $sLabel) : Input
150 150
 	{
Please login to merge, or discard this patch.
bundles/lib/Request.php 1 patch
Doc Comments   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -59,8 +59,7 @@
 block discarded – undo
59 59
 	 * if the request is ajax
60 60
 	 *
61 61
 	 * @access public
62
-	 * @param  string $sName name of the template
63
-	 * @return bool
62
+	 * @return boolean|null
64 63
 	 */
65 64
 	public static function isXmlHttpRequest()
66 65
 	{
Please login to merge, or discard this patch.
bundles/lib/Upload.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -81,7 +81,7 @@
 block discarded – undo
81 81
 	 *
82 82
 	 * @access public
83 83
 	 * @param  string $sFile
84
-	 * @return bool|object
84
+	 * @return null|boolean
85 85
 	 */
86 86
 	public function upload(string $sFile)
87 87
 	{
Please login to merge, or discard this patch.