Completed
Push — master ( f606cd...f6df63 )
by
unknown
03:49 queued 02:25
created
src/Http/Controllers/StateController.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -30,7 +30,6 @@  discard block
 block discarded – undo
30 30
 
31 31
         /**
32 32
          * [Function] index
33
-         * @param Request $req
34 33
          * 
35 34
          * @return json
36 35
          */
@@ -215,7 +214,6 @@  discard block
 block discarded – undo
215 214
         
216 215
         /**
217 216
          * [Function] destroy
218
-         * @param Request $req
219 217
          * 
220 218
          * @return json
221 219
          */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -2,12 +2,10 @@
 block discarded – undo
2 2
 
3 3
     namespace Bantenprov\VueWorkflow\Http\Controllers;
4 4
 
5
-    use App\Http\Controllers\Controller;
6 5
     use Illuminate\Http\Request;
7 6
     use Bantenprov\VueWorkflow\Facades\VueWorkflow;
8 7
     use Bantenprov\VueWorkflow\Models\State;
9 8
     use Bantenprov\VueWorkflow\Models\Workflow;
10
-
11 9
     use Validator;
12 10
 
13 11
     /**
Please login to merge, or discard this patch.
src/Http/Controllers/TransitionController.php 1 patch
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -31,7 +31,6 @@  discard block
 block discarded – undo
31 31
 
32 32
     /**
33 33
      * [Function] index
34
-     * @param Request $req
35 34
      * 
36 35
      * @return json
37 36
      */
@@ -238,7 +237,6 @@  discard block
 block discarded – undo
238 237
     
239 238
     /**
240 239
      * [Function] destroy
241
-     * @param Request $req
242 240
      * 
243 241
      * @return json
244 242
      */
Please login to merge, or discard this patch.
src/Http/Controllers/VueWorkflowController.php 1 patch
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -1,9 +1,7 @@
 block discarded – undo
1 1
 <?php namespace Bantenprov\VueWorkflow\Http\Controllers;
2 2
 
3 3
 use App\Http\Controllers\Controller;
4
-use Illuminate\Http\Request;
5 4
 use Bantenprov\VueWorkflow\Facades\VueWorkflow;
6
-use Bantenprov\VueWorkflow\Models\VueWorkflowModel;
7 5
 
8 6
 /**
9 7
  * The VueWorkflowController class.
Please login to merge, or discard this patch.
src/Http/Controllers/WorkflowController.php 2 patches
Doc Comments   -2 removed lines patch added patch discarded remove patch
@@ -75,7 +75,6 @@  discard block
 block discarded – undo
75 75
 
76 76
     /**
77 77
      * [Function] create
78
-     * @param Request $req
79 78
      * 
80 79
      * @return json
81 80
      */
@@ -216,7 +215,6 @@  discard block
 block discarded – undo
216 215
 
217 216
     /**
218 217
      * [Function] destroy
219
-     * @param Request $req
220 218
      * 
221 219
      * @return json
222 220
      */
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -6,9 +6,7 @@
 block discarded – undo
6 6
 use Bantenprov\VueWorkflow\Models\Workflow;
7 7
 use Bantenprov\VueWorkflow\Models\WorkflowType;
8 8
 use Bantenprov\VueWorkflow\Models\Transition;
9
-
10 9
 use Validator;
11
-
12 10
 use Bantenprov\VueWorkflow\Http\Traits\WorkflowTrait;
13 11
 
14 12
 /**
Please login to merge, or discard this patch.
src/Http/Controllers/WorkflowProcessController.php 1 patch
Unused Use Statements   -3 removed lines patch added patch discarded remove patch
@@ -11,11 +11,8 @@
 block discarded – undo
11 11
 use Bantenprov\VueWorkflow\Models\TransitionState;
12 12
 use Bantenprov\VueWorkflow\Models\Transition;
13 13
 use Bantenprov\VueWorkflow\Models\History;
14
-
15 14
 use Bantenprov\VueWorkflow\Http\Traits\WorkflowTrait;
16
-
17 15
 use App\Http\Controllers\Traits\WorkflowConditionTrait;
18
-
19 16
 use Validator;
20 17
 
21 18
 class WorkflowProcessController extends Controller
Please login to merge, or discard this patch.
src/VueWorkflowServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -56,7 +56,7 @@
 block discarded – undo
56 56
     /**
57 57
      * Get the services provided by the provider.
58 58
      *
59
-     * @return array
59
+     * @return string[]
60 60
      */
61 61
     public function provides()
62 62
     {
Please login to merge, or discard this patch.