Skip to content

Commit

Permalink
add return type to getContainerExtension
Browse files Browse the repository at this point in the history
  • Loading branch information
Sergey Boborykin authored and scaytrase committed Apr 11, 2022
1 parent ccea55f commit 7ef5572
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/MetricBundle/LamodaMetricBundle.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@
use Lamoda\Metric\MetricBundle\DependencyInjection\Compiler\RegisterResponseFactoriesPass;
use Lamoda\Metric\MetricBundle\DependencyInjection\LamodaMetricExtension;
use Symfony\Component\DependencyInjection\ContainerBuilder;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;
use Symfony\Component\HttpKernel\Bundle\Bundle;

/**
* @codeCoverageIgnore
*/
final class LamodaMetricBundle extends Bundle
{
public function getContainerExtension()
public function getContainerExtension(): ExtensionInterface
{
return new LamodaMetricExtension();
}
Expand Down

0 comments on commit 7ef5572

Please sign in to comment.