Skip to content

Commit f5694f9

Browse files
committed
Renamed deployType to deployTypes in the installer.
1 parent 58392c9 commit f5694f9

43 files changed

Lines changed: 58 additions & 58 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.vortex/CLAUDE.md

Lines changed: 3 additions & 3 deletions

.vortex/installer/src/Prompts/Handlers/DeployType.php renamed to .vortex/installer/src/Prompts/Handlers/DeployTypes.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
use DrevOps\VortexInstaller\Utils\Env;
99
use DrevOps\VortexInstaller\Utils\File;
1010

11-
class DeployType extends AbstractHandler {
11+
class DeployTypes extends AbstractHandler {
1212

1313
const ARTIFACT = 'artifact';
1414

.vortex/installer/src/Prompts/PromptManager.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseDownloadSource;
1313
use DrevOps\VortexInstaller\Prompts\Handlers\DatabaseImage;
1414
use DrevOps\VortexInstaller\Prompts\Handlers\DependencyUpdatesProvider;
15-
use DrevOps\VortexInstaller\Prompts\Handlers\DeployType;
15+
use DrevOps\VortexInstaller\Prompts\Handlers\DeployTypes;
1616
use DrevOps\VortexInstaller\Prompts\Handlers\Domain;
1717
use DrevOps\VortexInstaller\Prompts\Handlers\Dotenv;
1818
use DrevOps\VortexInstaller\Prompts\Handlers\HandlerInterface;
@@ -172,7 +172,7 @@ function (array $r, $pr, $n): string {
172172
)
173173

174174
->intro('Deployment')
175-
->add(fn(array $r, $pr, $n): array => multiselect(...$this->args(DeployType::class, NULL, $r)), DeployType::id())
175+
->add(fn(array $r, $pr, $n): array => multiselect(...$this->args(DeployTypes::class, NULL, $r)), DeployTypes::id())
176176

177177
->intro('Workflow')
178178
->add(fn($r, $pr, $n): int|string => select(...$this->args(ProvisionType::class)), ProvisionType::id())
@@ -274,7 +274,7 @@ public function runProcessors(): void {
274274
DatabaseImage::id(),
275275
DatabaseDownloadSource::id(),
276276
ProvisionType::id(),
277-
DeployType::id(),
277+
DeployTypes::id(),
278278
HostingProvider::id(),
279279
Tools::id(),
280280
Services::id(),
@@ -391,7 +391,7 @@ public function getResponsesSummary(): array {
391391
}
392392

393393
$values['Deployment'] = Tui::LIST_SECTION_TITLE;
394-
$values['Deployment types'] = Converter::toList($responses[DeployType::id()]);
394+
$values['Deployment types'] = Converter::toList($responses[DeployTypes::id()]);
395395

396396
$values['Workflow'] = Tui::LIST_SECTION_TITLE;
397397
$values['Provision type'] = $responses[ProvisionType::id()];

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.circleci/README.md renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/.circleci/README.md

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.circleci/config.yml renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/.circleci/config.yml

File renamed without changes.

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.env renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/.env

File renamed without changes.

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.github/workflows/-build-test-deploy.yml renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/.github/workflows/-build-test-deploy.yml

File renamed without changes.

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/.gitignore.artifact renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/.gitignore.artifact

File renamed without changes.

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/README.md renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/README.md

.vortex/installer/tests/Fixtures/install/deploy_type_all_circleci/docs/ci.md renamed to .vortex/installer/tests/Fixtures/install/deploy_types_all_circleci/docs/ci.md

0 commit comments

Comments
 (0)