Skip to content

Commit

Permalink
fix: fix deprecations (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
priyadi authored Jul 3, 2024
1 parent 089815d commit 928fbe4
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

# 0.12.4

* fix: fix deprecations

# 0.12.3

* feat: add `Closure` type parameter for count in all Pageable implementations
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@

class RekalogikaRekapagerApiPlatformExtension extends Extension
{
public function load(array $configs, ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container): void
{
// load our services

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

class RekalogikaRekapagerExtension extends Extension implements PrependExtensionInterface
{
public function load(array $configs, ContainerBuilder $container)
public function load(array $configs, ContainerBuilder $container): void
{
// load configuration

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@

class RemoveMissingDepsPass implements CompilerPassInterface
{
public function process(ContainerBuilder $container)
public function process(ContainerBuilder $container): void
{
if (!$container->hasDefinition('twig')) {
$container->removeDefinition(TwigPagerRenderer::class);
Expand Down

0 comments on commit 928fbe4

Please sign in to comment.