@@ -35,7 +35,7 @@ discard block |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 |
||
| 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 | { |
@@ -107,7 +107,7 @@ |
||
| 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 | { |
@@ -65,7 +65,7 @@ |
||
| 65 | 65 | } |
| 66 | 66 | |
| 67 | 67 | /** |
| 68 | - * @param $name |
|
| 68 | + * @param string $name |
|
| 69 | 69 | * |
| 70 | 70 | * @throws RuntimeException |
| 71 | 71 | * |