Skip to content

Commit 1ef6b11

Browse files
authored
Merge pull request #13 from jmsche/fix-deprecations
Get rid of deprecations
2 parents e076faa + 0b64030 commit 1ef6b11

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

src/Command/BiomeJsCheckCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ protected function configure(): void
4545
->addArgument('path', InputArgument::IS_ARRAY | InputArgument::REQUIRED, 'Single file, single path or list of paths');
4646
}
4747

48-
protected function initialize(InputInterface $input, OutputInterface $output)
48+
protected function initialize(InputInterface $input, OutputInterface $output): void
4949
{
5050
$this->io = new SymfonyStyle($input, $output);
5151
}

src/Command/BiomeJsCiCommand.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ protected function configure(): void
3939
;
4040
}
4141

42-
protected function initialize(InputInterface $input, OutputInterface $output)
42+
protected function initialize(InputInterface $input, OutputInterface $output): void
4343
{
4444
$this->io = new SymfonyStyle($input, $output);
4545
}

src/DependencyInjection/BiomeJsExtension.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414

1515
final class BiomeJsExtension extends Extension implements ConfigurationInterface
1616
{
17-
public function load(array $configs, ContainerBuilder $container)
17+
public function load(array $configs, ContainerBuilder $container): void
1818
{
1919
$loader = new Loader\PhpFileLoader($container, new FileLocator(__DIR__ . '/../../config'));
2020
$loader->load('services.php');

0 commit comments

Comments
 (0)