Skip to content

Commit ee21694

Browse files
committed
chore: check if fabbot is correctly working
1 parent 211ee5b commit ee21694

File tree

1 file changed

+3
-10
lines changed

1 file changed

+3
-10
lines changed

src/Icons/src/Command/LockIconsCommand.php

Lines changed: 3 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
<?php
22

3-
/*
4-
* This file is part of the Symfony package.
5-
*
6-
* (c) Fabien Potencier <fabien@symfony.com>
7-
*
8-
* For the full copyright and license information, please view the LICENSE
9-
* file that was distributed with this source code.
10-
*/
11-
123
namespace Symfony\UX\Icons\Command;
134

145
use Symfony\Component\Console\Attribute\AsCommand;
@@ -44,6 +35,8 @@ public function __construct(
4435
protected function configure(): void
4536
{
4637
$this
38+
39+
4740
->addOption(
4841
name: 'force',
4942
mode: InputOption::VALUE_NONE,
@@ -73,7 +66,7 @@ protected function execute(InputInterface $input, OutputInterface $output): int
7366
[$prefix, $name] = $parts;
7467

7568
try {
76-
$svg = $this->iconify->fetchSvg($prefix, $name);
69+
$svg = $this-> iconify->fetchSvg($prefix, $name);
7770
} catch (IconNotFoundException) {
7871
// icon not found on iconify
7972
continue;

0 commit comments

Comments
 (0)