Completed
Push — master ( eb3a14...ff6e8c )
by Nicolas
03:49
created
src/Generators/ModuleGenerator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -335,7 +335,7 @@
 block discarded – undo
335 335
      *
336 336
      * @param $stub
337 337
      *
338
-     * @return Stub
338
+     * @return string
339 339
      */
340 340
     protected function getStubContents($stub)
341 341
     {
Please login to merge, or discard this patch.
src/LaravelModulesServiceProvider.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.
src/Migrations/Migrator.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -248,7 +248,7 @@
 block discarded – undo
248 248
      *
249 249
      * @param array $migrations
250 250
      *
251
-     * @return array
251
+     * @return \Illuminate\Support\Collection
252 252
      */
253 253
     public function getLast($migrations)
254 254
     {
Please login to merge, or discard this patch.
src/Module.php 1 patch
Doc Comments   +8 added lines, -7 removed lines patch added patch discarded remove patch
@@ -34,8 +34,8 @@  discard block
 block discarded – undo
34 34
      * The constructor.
35 35
      *
36 36
      * @param Application $app
37
-     * @param $name
38
-     * @param $path
37
+     * @param string $name
38
+     * @param string $path
39 39
      */
40 40
     public function __construct(Application $app, $name, $path)
41 41
     {
@@ -167,6 +167,7 @@  discard block
 block discarded – undo
167 167
     /**
168 168
      * Get json contents.
169 169
      *
170
+     * @param string $file
170 171
      * @return Json
171 172
      */
172 173
     public function json($file = null)
@@ -194,7 +195,7 @@  discard block
 block discarded – undo
194 195
     /**
195 196
      * Get a specific data from composer.json file by given the key.
196 197
      *
197
-     * @param $key
198
+     * @param string $key
198 199
      * @param null $default
199 200
      *
200 201
      * @return mixed
@@ -272,7 +273,7 @@  discard block
 block discarded – undo
272 273
     /**
273 274
      * Determine whether the given status same with the current module status.
274 275
      *
275
-     * @param $status
276
+     * @param integer $status
276 277
      *
277 278
      * @return bool
278 279
      */
@@ -324,9 +325,9 @@  discard block
 block discarded – undo
324 325
     /**
325 326
      * Set active state for current module.
326 327
      *
327
-     * @param $active
328
+     * @param integer $active
328 329
      *
329
-     * @return bool
330
+     * @return integer
330 331
      */
331 332
     public function setActive($active)
332 333
     {
@@ -336,7 +337,7 @@  discard block
 block discarded – undo
336 337
     /**
337 338
      * Disable the current module.
338 339
      *
339
-     * @return bool
340
+     * @return boolean|null
340 341
      */
341 342
     public function disable()
342 343
     {
Please login to merge, or discard this patch.
src/Publishing/Publisher.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -88,7 +88,7 @@
 block discarded – undo
88 88
     /**
89 89
      * Get module instance.
90 90
      *
91
-     * @return \Nwidart\Modules\Module
91
+     * @return string
92 92
      */
93 93
     public function getModule()
94 94
     {
Please login to merge, or discard this patch.
src/Repository.php 1 patch
Doc Comments   +7 added lines, -8 removed lines patch added patch discarded remove patch
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
     /**
90 90
      * Get scanned modules paths.
91 91
      *
92
-     * @return array
92
+     * @return string[]
93 93
      */
94 94
     public function getScanPaths()
95 95
     {
@@ -365,7 +365,7 @@  discard block
 block discarded – undo
365 365
     /**
366 366
      * Get module path for a specific module.
367 367
      *
368
-     * @param $module
368
+     * @param string $module
369 369
      *
370 370
      * @return string
371 371
      */
@@ -393,7 +393,7 @@  discard block
 block discarded – undo
393 393
     /**
394 394
      * Get a specific config data from a configuration file.
395 395
      *
396
-     * @param $key
396
+     * @param string $key
397 397
      *
398 398
      * @return mixed
399 399
      */
@@ -433,7 +433,7 @@  discard block
 block discarded – undo
433 433
     /**
434 434
      * Get module used for cli session.
435 435
      *
436
-     * @return string
436
+     * @return Module
437 437
      */
438 438
     public function getUsedNow()
439 439
     {
@@ -443,7 +443,7 @@  discard block
 block discarded – undo
443 443
     /**
444 444
      * Get used now.
445 445
      *
446
-     * @return string
446
+     * @return Module
447 447
      */
448 448
     public function getUsed()
449 449
     {
@@ -474,7 +474,6 @@  discard block
 block discarded – undo
474 474
      * Get asset url from a specific module.
475 475
      *
476 476
      * @param string $asset
477
-     * @param bool   $secure
478 477
      *
479 478
      * @return string
480 479
      */
@@ -518,7 +517,7 @@  discard block
 block discarded – undo
518 517
      *
519 518
      * @param string $name
520 519
      *
521
-     * @return bool
520
+     * @return boolean|null
522 521
      */
523 522
     public function enable($name)
524 523
     {
@@ -530,7 +529,7 @@  discard block
 block discarded – undo
530 529
      *
531 530
      * @param string $name
532 531
      *
533
-     * @return bool
532
+     * @return boolean|null
534 533
      */
535 534
     public function disable($name)
536 535
     {
Please login to merge, or discard this patch.