Skip to content

Commit a4ac9f7

Browse files
authored
Fix typo in ViewInstallCommand.php
1 parent cda438a commit a4ac9f7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ViewInstallCommand.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ protected function configure()
2121
->setDescription('Run a script in your composer.json')
2222
->addOption('blade', null, InputOption::VALUE_NONE, 'Install blade')
2323
->addOption('bare-ui', null, InputOption::VALUE_NONE, 'Install bare ui')
24-
->addOption('inerita', null, InputOption::VALUE_NONE, 'Setup inerita files')
24+
->addOption('inertia', null, InputOption::VALUE_NONE, 'Setup inertia files')
2525
->addOption('react', null, InputOption::VALUE_NONE, 'Install react')
2626
->addOption('tailwind', null, InputOption::VALUE_NONE, 'Install tailwind')
2727
->addOption('vite', null, InputOption::VALUE_NONE, 'Setup vite files')
@@ -39,7 +39,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
3939
return $this->installBareUi($output);
4040
}
4141

42-
if ($input->getOption('inerita')) {
42+
if ($input->getOption('inertia')) {
4343
return $this->installInertia($input, $output);
4444
}
4545

@@ -157,7 +157,7 @@ protected function installBareUi($output)
157157
}
158158

159159
/**
160-
* Install inerita
160+
* Install inertia
161161
*/
162162
protected function installInertia($input, $output)
163163
{

0 commit comments

Comments
 (0)