Skip to content

Commit a847f8d

Browse files
committed
fix(vuejs): old vuejs integration removed
1 parent 930d12d commit a847f8d

37 files changed

+0
-2058
lines changed

src/Commands/Publish/VueJsLayoutPublishCommand.php

Lines changed: 0 additions & 295 deletions
This file was deleted.

src/Commands/RollbackGeneratorCommand.php

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,6 @@
1717
use InfyOm\Generator\Generators\Scaffold\RequestGenerator;
1818
use InfyOm\Generator\Generators\Scaffold\RoutesGenerator;
1919
use InfyOm\Generator\Generators\Scaffold\ViewGenerator;
20-
use InfyOm\Generator\Generators\VueJs\ControllerGenerator as VueJsControllerGenerator;
21-
use InfyOm\Generator\Generators\VueJs\ModelJsConfigGenerator;
22-
use InfyOm\Generator\Generators\VueJs\RoutesGenerator as VueJsRoutesGenerator;
23-
use InfyOm\Generator\Generators\VueJs\ViewGenerator as VueJsViewGenerator;
2420
use Symfony\Component\Console\Input\InputArgument;
2521
use Symfony\Component\Console\Input\InputOption;
2622

@@ -71,7 +67,6 @@ public function handle()
7167
CommandData::$COMMAND_TYPE_API,
7268
CommandData::$COMMAND_TYPE_SCAFFOLD,
7369
CommandData::$COMMAND_TYPE_API_SCAFFOLD,
74-
CommandData::$COMMAND_TYPE_VUEJS,
7570
])) {
7671
$this->error('invalid rollback type');
7772
}
@@ -123,18 +118,6 @@ public function handle()
123118
$routeGenerator = new RoutesGenerator($this->commandData);
124119
$routeGenerator->rollback();
125120

126-
$controllerGenerator = new VueJsControllerGenerator($this->commandData);
127-
$controllerGenerator->rollback();
128-
129-
$routesGenerator = new VueJsRoutesGenerator($this->commandData);
130-
$routesGenerator->rollback();
131-
132-
$viewGenerator = new VueJsViewGenerator($this->commandData);
133-
$viewGenerator->rollback();
134-
135-
$modelJsConfigGenerator = new ModelJsConfigGenerator($this->commandData);
136-
$modelJsConfigGenerator->rollback();
137-
138121
if ($this->commandData->getAddOn('tests')) {
139122
$repositoryTestGenerator = new RepositoryTestGenerator($this->commandData);
140123
$repositoryTestGenerator->rollback();

0 commit comments

Comments
 (0)