Completed
Pull Request — master (#2305)
by
unknown
02:57
created
src/Controllers/HasResourceActions.php 1 patch
Doc Comments   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -30,7 +30,7 @@
 block discarded – undo
30 30
      * Remove the specified resource from storage.
31 31
      *
32 32
      * @param  int  $id
33
-     * @return \Illuminate\Http\Response
33
+     * @return \Illuminate\Http\JsonResponse
34 34
      */
35 35
     public function destroy($id)
36 36
     {
Please login to merge, or discard this patch.
src/Console/ResourceGenerator.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -220,7 +220,7 @@
 block discarded – undo
220 220
             );
221 221
         }
222 222
 
223
-        $table = $this->model->getConnection()->getTablePrefix() . $this->model->getTable();
223
+        $table = $this->model->getConnection()->getTablePrefix().$this->model->getTable();
224 224
         /** @var \Doctrine\DBAL\Schema\MySqlSchemaManager $schema */
225 225
         $schema = $this->model->getConnection()->getDoctrineSchemaManager($table);
226 226
 
Please login to merge, or discard this patch.