Skip to content

Commit 059b133

Browse files
authored
Merge pull request #9 from rekalogika/fix/bundle-deprecation
fix: bundle methods typehints
2 parents b34a5f4 + f5644c9 commit 059b133

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/RekalogikaMapperBundle.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function getPath(): string
3131
return \dirname(__DIR__);
3232
}
3333

34-
public function build(ContainerBuilder $container)
34+
public function build(ContainerBuilder $container): void
3535
{
3636
parent::build($container);
3737

@@ -44,15 +44,15 @@ public function build(ContainerBuilder $container)
4444
}
4545
}
4646

47-
public function boot()
47+
public function boot(): void
4848
{
4949
/** @var ProxyAutoloaderInterface */
5050
$autoloader = $this->container?->get('rekalogika.mapper.proxy_autoloader');
5151

5252
$autoloader->registerAutoloader();
5353
}
5454

55-
public function shutdown()
55+
public function shutdown(): void
5656
{
5757
/** @var ProxyAutoloaderInterface */
5858
$autoloader = $this->container?->get('rekalogika.mapper.proxy_autoloader');

0 commit comments

Comments
 (0)