Skip to content

Commit

Permalink
Fix phpstan findings
Browse files Browse the repository at this point in the history
  • Loading branch information
core23 committed Feb 8, 2025
1 parent df9449d commit ac8694e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion phpstan-baseline.neon
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
parameters:
ignoreErrors:
-
message: "#^Method Nucleos\\\\SetlistFmBundle\\\\NucleosSetlistFmBundle\\:\\:getContainerExtension\\(\\) should return Symfony\\\\Component\\\\DependencyInjection\\\\Extension\\\\ExtensionInterface\\|null but returns Symfony\\\\Component\\\\DependencyInjection\\\\Extension\\\\ExtensionInterface\\|false\\.$#"
message: "#^Method Nucleos\\\\SetlistFmBundle\\\\NucleosSetlistFmBundle\\:\\:getContainerExtension\\(\\) should return Symfony\\\\Component\\\\DependencyInjection\\\\Extension\\\\ExtensionInterface but returns Symfony\\\\Component\\\\DependencyInjection\\\\Extension\\\\ExtensionInterface\\|false\\.$#"
count: 1
path: src/NucleosSetlistFmBundle.php

Expand Down
2 changes: 1 addition & 1 deletion src/NucleosSetlistFmBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@

final class NucleosSetlistFmBundle extends Bundle
{
public function getContainerExtension(): ?ExtensionInterface
public function getContainerExtension(): ExtensionInterface
{
if (null === $this->extension) {
$this->extension = new NucleosSetlistFmExtension();
Expand Down

0 comments on commit ac8694e

Please sign in to comment.