Completed
Push — master ( 6ee175...4a5f9e )
by
unknown
01:25
created
src/Http/Controllers/VueOpdController.php 2 patches
Doc Comments   +1 added lines, -6 removed lines patch added patch discarded remove patch
@@ -81,7 +81,6 @@  discard block
 block discarded – undo
81 81
     /**
82 82
      * Display the specified resource.
83 83
      *
84
-     * @param  \App\VueOpd  $vue_opd
85 84
      * @return \Illuminate\Http\Response
86 85
      */
87 86
     public function store(Request $request)
@@ -92,7 +91,6 @@  discard block
 block discarded – undo
92 91
     /**
93 92
      * Store a newly created resource in storage.
94 93
      *
95
-     * @param  \Illuminate\Http\Request  $request
96 94
      * @return \Illuminate\Http\Response
97 95
      */
98 96
     public function show($id)
@@ -103,7 +101,6 @@  discard block
 block discarded – undo
103 101
     /**
104 102
      * Show the form for editing the specified resource.
105 103
      *
106
-     * @param  \App\VueOpd  $vue_opd
107 104
      * @return \Illuminate\Http\Response
108 105
      */
109 106
     public function edit($id)
@@ -115,7 +112,6 @@  discard block
 block discarded – undo
115 112
      * Update the specified resource in storage.
116 113
      *
117 114
      * @param  \Illuminate\Http\Request  $request
118
-     * @param  \App\VueOpd  $vue_opd
119 115
      * @return \Illuminate\Http\Response
120 116
      */
121 117
     public function update(Request $request, $id)
@@ -126,8 +122,7 @@  discard block
 block discarded – undo
126 122
     /**
127 123
      * Remove the specified resource from storage.
128 124
      *
129
-     * @param  \App\VueOpd  $vue_opd
130
-     * @return \Illuminate\Http\Response
125
+     * @return string
131 126
      */
132 127
     public function destroy($id)
133 128
     {
Please login to merge, or discard this patch.
Unused Use Statements   -2 removed lines patch added patch discarded remove patch
@@ -5,13 +5,11 @@
 block discarded – undo
5 5
 /* Require */
6 6
 use App\Http\Controllers\Controller;
7 7
 use Illuminate\Http\Request;
8
-use Bantenprov\BudgetAbsorption\Facades\VueOpdFacade;
9 8
 
10 9
 /* Models */
11 10
 use Bantenprov\VueOpd\Models\Bantenprov\VueOpd\VueOpd;
12 11
 
13 12
 /* Etc */
14
-use Validator;
15 13
 
16 14
 /**
17 15
  * The VueOpdController class.
Please login to merge, or discard this patch.
src/VueOpdServiceProvider.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -58,7 +58,7 @@
 block discarded – undo
58 58
     /**
59 59
      * Get the services provided by the provider.
60 60
      *
61
-     * @return array
61
+     * @return string[]
62 62
      */
63 63
     public function provides()
64 64
     {
Please login to merge, or discard this patch.