Completed
Push — master ( 565c08...93d030 )
by José
125:33 queued 71:22
created
src/Chamilo/CoreBundle/Component/Editor/Connector.php 1 patch
Doc Comments   +2 added lines, -1 removed lines patch added patch discarded remove patch
@@ -79,6 +79,7 @@  discard block
 block discarded – undo
79 79
     /**
80 80
      * Available driver list.
81 81
      * @param array
82
+     * @param string[] $list
82 83
      */
83 84
     public function setDriverList($list)
84 85
     {
@@ -87,7 +88,7 @@  discard block
 block discarded – undo
87 88
 
88 89
     /**
89 90
      * Available driver list.
90
-     * @return array
91
+     * @return string[]
91 92
      */
92 93
     private function getDefaultDriverList()
93 94
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Component/Editor/Driver/DropBoxDriver.php 1 patch
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -133,7 +133,7 @@  discard block
 block discarded – undo
133 133
     /**
134 134
      * Close connection
135 135
      *
136
-     * @return void
136
+     * @return boolean
137 137
      * @author Dmitry (dio) Levashov
138 138
      **/
139 139
     public function umount() {
@@ -488,7 +488,7 @@  discard block
 block discarded – undo
488 488
      * Close opened file
489 489
      *
490 490
      * @param  resource  $fp  file pointer
491
-     * @return bool
491
+     * @return boolean|null
492 492
      * @author Dmitry (dio) Levashov
493 493
      **/
494 494
     protected function _fclose($fp, $path='') {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Controller/BaseResourceController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -149,7 +149,7 @@
 block discarded – undo
149 149
     }
150 150
 
151 151
     /**
152
-     * @param $action
152
+     * @param string $action
153 153
      * @param MenuItemInterface $menu
154 154
      * @return MenuItemInterface
155 155
      */
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Controller/IndexController.php 1 patch
Doc Comments   +1 added lines, -4 removed lines patch added patch discarded remove patch
@@ -38,9 +38,6 @@  discard block
 block discarded – undo
38 38
      * @Route("/", name="home")
39 39
      * @Method({"GET"})
40 40
      *
41
-     * @param string $type courses|sessions|mycoursecategories
42
-     * @param string $filter for the userportal courses page. Only works when setting 'history'
43
-     * @param int $page
44 41
      *
45 42
      * @return Response
46 43
      */
@@ -137,7 +134,7 @@  discard block
 block discarded – undo
137 134
      * @Method({"GET"})
138 135
      * @param Request $request
139 136
      *
140
-     * @return Response
137
+     * @return string
141 138
      */
142 139
     public function toggleStudentViewAction(Request $request)
143 140
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/Course.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -392,7 +392,7 @@  discard block
 block discarded – undo
392 392
     }
393 393
 
394 394
     /**
395
-     * @return ArrayCollection
395
+     * @return CTool[]
396 396
      */
397 397
     public function getTools()
398 398
     {
@@ -427,7 +427,7 @@  discard block
 block discarded – undo
427 427
     }
428 428
 
429 429
     /**
430
-     * @param $urls
430
+     * @param ArrayCollection $urls
431 431
      */
432 432
     public function setUrls($urls)
433 433
     {
@@ -1244,7 +1244,7 @@  discard block
 block discarded – undo
1244 1244
     }
1245 1245
 
1246 1246
     /**
1247
-     * @return array
1247
+     * @return string[]
1248 1248
      */
1249 1249
     public static function getStatusList()
1250 1250
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/CourseRequest.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -148,7 +148,7 @@
 block discarded – undo
148 148
      * Set user
149 149
      *
150 150
      * @param User $user
151
-     * @return UsergroupRelUser
151
+     * @return CourseRequest
152 152
      */
153 153
     public function setUser(User $user)
154 154
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Entity/Resource/ResourceNode.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -253,7 +253,7 @@
 block discarded – undo
253 253
     /**
254 254
      * Returns the parent resource.
255 255
      *
256
-     * @return AbstractResource
256
+     * @return null|ResourceNode
257 257
      */
258 258
     public function getParent()
259 259
     {
Please login to merge, or discard this patch.
src/Chamilo/CoreBundle/Menu/SimpleMenuBuilder.php 1 patch
Doc Comments   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
     }
209 209
 
210 210
     /**
211
-     * @return mixed
211
+     * @return string
212 212
      */
213 213
     public function getLabel()
214 214
     {
@@ -216,7 +216,7 @@  discard block
 block discarded – undo
216 216
     }
217 217
 
218 218
     /**
219
-     * @return mixed
219
+     * @return string
220 220
      */
221 221
     public function getRoute()
222 222
     {
@@ -224,7 +224,7 @@  discard block
 block discarded – undo
224 224
     }
225 225
 
226 226
     /**
227
-     * @return mixed
227
+     * @return boolean
228 228
      */
229 229
     public function isActive()
230 230
     {
Please login to merge, or discard this patch.
src/Chamilo/InstallerBundle/Requirement/SettingsRequirements.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -177,6 +177,9 @@
 block discarded – undo
177 177
             );
178 178
     }
179 179
 
180
+    /**
181
+     * @param string $key
182
+     */
180 183
     private function isOn($key)
181 184
     {
182 185
         $value = ini_get($key);
Please login to merge, or discard this patch.