@@ -51,7 +51,7 @@ discard block |
||
51 | 51 | } |
52 | 52 | |
53 | 53 | /** |
54 | - * @param $request |
|
54 | + * @param CreateRelationRequest $request |
|
55 | 55 | */ |
56 | 56 | public function createOptional($request): void |
57 | 57 | { |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | /** |
66 | 66 | * @param $option |
67 | - * @return mixed |
|
67 | + * @return CreateMigrationAction |
|
68 | 68 | */ |
69 | 69 | private function getCreateAction($option) |
70 | 70 | { |
@@ -3,16 +3,16 @@ |
||
3 | 3 | namespace Mtolhuys\LaravelSchematics\Http\Controllers; |
4 | 4 | |
5 | 5 | use Illuminate\Contracts\Routing\ResponseFactory; |
6 | -use Mtolhuys\LaravelSchematics\Actions\Relation\DeleteRelationAction; |
|
7 | -use Mtolhuys\LaravelSchematics\Actions\Relation\CreateRelationAction; |
|
6 | +use Illuminate\Routing\Controller; |
|
7 | +use Illuminate\Support\Facades\Cache; |
|
8 | 8 | use Mtolhuys\LaravelSchematics\Actions\Migration\CreateMigrationAction; |
9 | 9 | use Mtolhuys\LaravelSchematics\Actions\Migration\DeleteMigrationAction; |
10 | +use Mtolhuys\LaravelSchematics\Actions\Relation\CreateRelationAction; |
|
11 | +use Mtolhuys\LaravelSchematics\Actions\Relation\DeleteRelationAction; |
|
10 | 12 | use Mtolhuys\LaravelSchematics\Http\Requests\CreateRelationRequest; |
11 | 13 | use Mtolhuys\LaravelSchematics\Http\Requests\DeleteRelationRequest; |
12 | -use Symfony\Component\HttpFoundation\Response; |
|
13 | -use Illuminate\Support\Facades\Cache; |
|
14 | -use Illuminate\Routing\Controller; |
|
15 | 14 | use ReflectionException; |
15 | +use Symfony\Component\HttpFoundation\Response; |
|
16 | 16 | |
17 | 17 | class RelationsController extends Controller |
18 | 18 | { |