Passed
Push — master ( 672a66...8833c5 )
by Thomas
04:32 queued 02:11
created
src/Commands/MakeBackpackCrudController.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -76,7 +76,7 @@
 block discarded – undo
76 76
      * @param string $stub
77 77
      * @param string $name
78 78
      *
79
-     * @return string
79
+     * @return MakeBackpackCrudController
80 80
      */
81 81
     protected function replaceNameStrings(&$stub, $name)
82 82
     {
Please login to merge, or discard this patch.
src/Commands/MakeBackpackCrudModel.php 2 patches
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -63,7 +63,7 @@
 block discarded – undo
63 63
      * @param string $stub
64 64
      * @param string $name
65 65
      *
66
-     * @return string
66
+     * @return MakeBackpackCrudModel
67 67
      */
68 68
     protected function replaceTable(&$stub, $name)
69 69
     {
Please login to merge, or discard this patch.
Unused Use Statements   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -2,8 +2,8 @@
 block discarded – undo
2 2
 
3 3
 namespace Webfactor\Laravel\Generators\Commands;
4 4
 
5
-use Illuminate\Support\Str;
6 5
 use Illuminate\Console\GeneratorCommand;
6
+use Illuminate\Support\Str;
7 7
 
8 8
 class MakeBackpackCrudModel extends GeneratorCommand
9 9
 {
Please login to merge, or discard this patch.
src/Contracts/OpenInIdeInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -4,5 +4,8 @@
 block discarded – undo
4 4
 
5 5
 interface OpenInIdeInterface
6 6
 {
7
+    /**
8
+     * @return void
9
+     */
7 10
     public function open();
8 11
 }
Please login to merge, or discard this patch.
src/Contracts/ServiceInterface.php 1 patch
Doc Comments   +3 added lines patch added patch discarded remove patch
@@ -4,5 +4,8 @@
 block discarded – undo
4 4
 
5 5
 interface ServiceInterface
6 6
 {
7
+    /**
8
+     * @return void
9
+     */
7 10
     public function call();
8 11
 }
Please login to merge, or discard this patch.
src/Services/RouteService.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
     /**
38 38
      * Build the class with the given name.
39 39
      *
40
-     * @param string $name
41 40
      *
42 41
      * @return string
43 42
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Webfactor\Laravel\Generators\Services;
4 4
 
5
-use Illuminate\Filesystem\Filesystem;
6
-use Webfactor\Laravel\Generators\Commands\MakeEntity;
7 5
 use Webfactor\Laravel\Generators\Contracts\ServiceAbstract;
8 6
 use Webfactor\Laravel\Generators\Contracts\ServiceInterface;
9 7
 
Please login to merge, or discard this patch.
src/Services/SidebarService.php 2 patches
Doc Comments   -1 removed lines patch added patch discarded remove patch
@@ -37,7 +37,6 @@
 block discarded – undo
37 37
     /**
38 38
      * Build the class with the given name.
39 39
      *
40
-     * @param string $name
41 40
      *
42 41
      * @return string
43 42
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,8 +2,6 @@
 block discarded – undo
2 2
 
3 3
 namespace Webfactor\Laravel\Generators\Services;
4 4
 
5
-use Illuminate\Filesystem\Filesystem;
6
-use Webfactor\Laravel\Generators\Commands\MakeEntity;
7 5
 use Webfactor\Laravel\Generators\Contracts\ServiceAbstract;
8 6
 use Webfactor\Laravel\Generators\Contracts\ServiceInterface;
9 7
 
Please login to merge, or discard this patch.