Skip to content

Commit 22af428

Browse files
committed
Fix duplicate import
1 parent 48ea4ac commit 22af428

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Console/Command/ThemeCreateCommand.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@
88
use Symfony\Component\Console\Input\InputOption;
99
use Magento\Framework\Component\ComponentRegistrar;
1010
use Magento\Framework\Filesystem\DirectoryList;
11-
use Magento\Framework\Shell;
1211
use Symfony\Component\Console\Command\Command;
1312
use Symfony\Component\Console\Input\InputInterface;
1413
use Symfony\Component\Console\Output\OutputInterface;
@@ -57,7 +56,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
5756

5857
$themeFolder = $this->getThemeFolder($themeName, $application);
5958
$this->shell->execute('mkdir -p '.$themeFolder);
60-
59+
6160
$this->generateRegistrationFile($themeFolder, $application . '/' . $themeName);
6261
$this->generateThemeXmlFile($themeFolder, $themeName, $parentThemeName);
6362
return Command::SUCCESS;

0 commit comments

Comments
 (0)