Skip to content

Commit 38b8c5f

Browse files
feat: Remove redundant install command
1 parent 5e479da commit 38b8c5f

2 files changed

Lines changed: 4 additions & 74 deletions

File tree

bin/transformers

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,21 @@
11
#!/usr/bin/env php
2-
<?php declare(strict_types=1);
2+
<?php
3+
4+
declare(strict_types=1);
35

46
use Symfony\Component\Console\Application;
57

68
require_once $_composer_autoload_path ?? __DIR__ . '/../vendor/autoload.php';
79

810
$application = new Application();
911

10-
// ... register commands
11-
1212
try {
1313
$application->setName('Transformers PHP CLI');
1414

15-
$application->add(new Codewithkyrian\Transformers\Commands\InstallCommand());
1615
$application->add(new Codewithkyrian\Transformers\Commands\DownloadModelCommand());
1716

1817
$application->run();
1918
} catch (Exception $e) {
2019
echo $e->getMessage();
2120
exit(1);
22-
}
21+
}

src/Commands/InstallCommand.php

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

0 commit comments

Comments
 (0)