Skip to content

Commit d4dfdd4

Browse files
authored
Added missing void return types to 'process' (#553)
1 parent 6d3bd27 commit d4dfdd4

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/bundle/Debug/DependencyInjection/Compiler/DataCollectorPass.php

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

1515
class DataCollectorPass implements CompilerPassInterface
1616
{
17-
public function process(ContainerBuilder $container)
17+
public function process(ContainerBuilder $container): void
1818
{
1919
if (!$container->hasDefinition(IbexaCoreCollector::class)) {
2020
return;

src/bundle/RepositoryInstaller/DependencyInjection/Compiler/InstallerTagPass.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,9 @@
1919
*/
2020
class InstallerTagPass implements CompilerPassInterface
2121
{
22-
public const INSTALLER_TAG = 'ibexa.installer';
22+
public const string INSTALLER_TAG = 'ibexa.installer';
2323

24-
public function process(ContainerBuilder $container)
24+
public function process(ContainerBuilder $container): void
2525
{
2626
if (!$container->hasDefinition(InstallPlatformCommand::class)) {
2727
return;

0 commit comments

Comments
 (0)