From a229fe0c6b309f9ffe8cb31925acaec7106cda15 Mon Sep 17 00:00:00 2001 From: Tom Erskine Date: Mon, 25 Nov 2019 15:04:36 -0600 Subject: [PATCH] EQPS-214: Remove SVC code from magento2-infrastructure. - Removing BIC references from bin/svc --- bin/svc | 2 -- 1 file changed, 2 deletions(-) diff --git a/bin/svc b/bin/svc index 360aac0d..be55b2b5 100755 --- a/bin/svc +++ b/bin/svc @@ -8,7 +8,6 @@ require __DIR__ . '/../vendor/autoload.php'; use Symfony\Component\Console\Application; -use Magento\SemanticVersionChecker\Console\Command\BackwardIncompatibleChangesCommand; use Magento\SemanticVersionChecker\Console\Command\CompareSourceCommand; if (PHP_SAPI !== 'cli') { @@ -18,7 +17,6 @@ if (PHP_SAPI !== 'cli') { try { $application = new Application(); - $application->add(new BackwardIncompatibleChangesCommand()); $application->add(new CompareSourceCommand()); $application->run(); } catch (\Exception $e) {