We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aadb409 commit a229fe0Copy full SHA for a229fe0
bin/svc
@@ -8,7 +8,6 @@
8
require __DIR__ . '/../vendor/autoload.php';
9
10
use Symfony\Component\Console\Application;
11
-use Magento\SemanticVersionChecker\Console\Command\BackwardIncompatibleChangesCommand;
12
use Magento\SemanticVersionChecker\Console\Command\CompareSourceCommand;
13
14
if (PHP_SAPI !== 'cli') {
@@ -18,7 +17,6 @@ if (PHP_SAPI !== 'cli') {
18
17
19
try {
20
$application = new Application();
21
- $application->add(new BackwardIncompatibleChangesCommand());
22
$application->add(new CompareSourceCommand());
23
$application->run();
24
} catch (\Exception $e) {
0 commit comments