Completed
Pull Request — master (#45)
by John
03:53
created
src/Module.php 1 patch
Doc Comments   +7 added lines, -6 removed lines patch added patch discarded remove patch
@@ -35,7 +35,7 @@  discard block
 block discarded – undo
35 35
      *
36 36
      * @param Application $app
37 37
      * @param $name
38
-     * @param $path
38
+     * @param string $path
39 39
      */
40 40
     public function __construct(Application $app, $name, $path)
41 41
     {
@@ -169,6 +169,7 @@  discard block
 block discarded – undo
169 169
     /**
170 170
      * Get json contents.
171 171
      *
172
+     * @param string $file
172 173
      * @return Json
173 174
      */
174 175
     public function json($file = null)
@@ -196,7 +197,7 @@  discard block
 block discarded – undo
196 197
     /**
197 198
      * Get a specific data from composer.json file by given the key.
198 199
      *
199
-     * @param $key
200
+     * @param string $key
200 201
      * @param null $default
201 202
      *
202 203
      * @return mixed
@@ -274,7 +275,7 @@  discard block
 block discarded – undo
274 275
     /**
275 276
      * Determine whether the given status same with the current module status.
276 277
      *
277
-     * @param $status
278
+     * @param integer $status
278 279
      *
279 280
      * @return bool
280 281
      */
@@ -326,9 +327,9 @@  discard block
 block discarded – undo
326 327
     /**
327 328
      * Set active state for current module.
328 329
      *
329
-     * @param $active
330
+     * @param integer $active
330 331
      *
331
-     * @return bool
332
+     * @return integer
332 333
      */
333 334
     public function setActive($active)
334 335
     {
@@ -338,7 +339,7 @@  discard block
 block discarded – undo
338 339
     /**
339 340
      * Disable the current module.
340 341
      *
341
-     * @return bool
342
+     * @return boolean|null
342 343
      */
343 344
     public function disable()
344 345
     {
Please login to merge, or discard this patch.
src/Support/Migrations/NameParser.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -107,7 +107,7 @@
 block discarded – undo
107 107
     /**
108 108
      * Get the services provided by the provider.
109 109
      *
110
-     * @return array
110
+     * @return string[]
111 111
      */
112 112
     public function provides()
113 113
     {
Please login to merge, or discard this patch.