Skip to content

Commit

Permalink
Merge pull request #5 from arneee/patch-2
Browse files Browse the repository at this point in the history
Fix deprecation warning for native return types, thanks @arneee
  • Loading branch information
dannyvankooten authored Jan 7, 2022
2 parents 1b0080a + 2634766 commit 768a468
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/VatBundle.php
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
<?php
namespace Ibericode\Vat\Bundle;

use Ibericode\Vat\Bundle\DependencyInjection\VatExtension;
use Ibericode\Vat\Bundle\DependencyInjection\VatExtension;
use Symfony\Component\DependencyInjection\Extension\ExtensionInterface;

class VatBundle extends \Symfony\Component\HttpKernel\Bundle\Bundle
{
public function getContainerExtension()
public function getContainerExtension() : ?ExtensionInterface
{
return new VatExtension();
}
}
}

0 comments on commit 768a468

Please sign in to comment.