Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Feb 16, 2025
1 parent 477dcd1 commit 974f071
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions src/Command.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Command extends SymfonyCommand
*/
protected ?string $directory;

/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function configure(): void
{
Expand All @@ -33,7 +33,7 @@ protected function configure(): void
->addOption('ssl-no-verify', null, InputOption::VALUE_NONE, 'Bypass SSL certificate verification when installing through a proxy');
}

/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function initialize(InputInterface $input, OutputInterface $output): void
{
Expand Down
4 changes: 2 additions & 2 deletions src/DetectCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
#[AsCommand(name: 'detect', description: 'Detect the installed Chrome/Chromium version.')]
class DetectCommand extends Command
{
/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function configure(): void
{
Expand All @@ -30,7 +30,7 @@ protected function configure(): void
parent::configure();
}

/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function execute(InputInterface $input, OutputInterface $output): int
{
Expand Down
4 changes: 2 additions & 2 deletions src/UpdateCommand.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
#[AsCommand(name: 'update', description: 'Install the ChromeDriver binary.')]
class UpdateCommand extends Command
{
/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function configure(): void
{
Expand All @@ -29,7 +29,7 @@ protected function configure(): void
parent::configure();
}

/** {@inheritDoc */
/** {@inheritDoc} */
#[\Override]
protected function execute(InputInterface $input, OutputInterface $output): int
{
Expand Down

0 comments on commit 974f071

Please sign in to comment.