Skip to content

Commit 48ea4ac

Browse files
committed
Pending changes
1 parent 8613970 commit 48ea4ac

File tree

1 file changed

+1
-21
lines changed

1 file changed

+1
-21
lines changed

Console/Command/ThemeCreateCommand.php

Lines changed: 1 addition & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -13,33 +13,17 @@
1313
use Symfony\Component\Console\Input\InputInterface;
1414
use Symfony\Component\Console\Output\OutputInterface;
1515
use Throwable;
16+
1617
class ThemeCreateCommand extends Command
1718
{
18-
private DirectoryList $directoryList;
19-
private ComponentRegistrar $componentRegistrar;
20-
private Shell $shell;
21-
22-
private string $themeSkeletonFolder;
23-
2419
public function __construct(
25-
<<<<<<< HEAD
26-
DirectoryList $directoryList,
27-
ComponentRegistrar $componentRegistrar,
28-
Shell $shell,
29-
string $themeSkeletonFolder = '',
30-
=======
3120
private DirectoryList $directoryList,
3221
private ComponentRegistrar $componentRegistrar,
3322
private Shell $shell,
3423
private string $themeSkeletonFolder = '',
35-
>>>>>>> 9ef8254c1b70701f2f1edcc4682f914e2f6cabe8
3624
string $name = null
3725
) {
3826
parent::__construct($name);
39-
$this->directoryList = $directoryList;
40-
$this->componentRegistrar = $componentRegistrar;
41-
$this->themeSkeletonFolder = $themeSkeletonFolder;
42-
$this->shell = $shell;
4327
}
4428

4529
/**
@@ -73,11 +57,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7357

7458
$themeFolder = $this->getThemeFolder($themeName, $application);
7559
$this->shell->execute('mkdir -p '.$themeFolder);
76-
<<<<<<< HEAD
7760

78-
=======
79-
80-
>>>>>>> 9ef8254c1b70701f2f1edcc4682f914e2f6cabe8
8161
$this->generateRegistrationFile($themeFolder, $application . '/' . $themeName);
8262
$this->generateThemeXmlFile($themeFolder, $themeName, $parentThemeName);
8363
return Command::SUCCESS;

0 commit comments

Comments
 (0)