Skip to content

Commit

Permalink
fix: resolve deprecation notices
Browse files Browse the repository at this point in the history
  • Loading branch information
jaburjak committed Oct 9, 2024
1 parent d481c05 commit b5f317e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/DependencyInjection/EnginiroAssetExtension.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function getConfiguration(array $config, ContainerBuilder $container): ?C
return new Configuration($defaultManifestPath);
}

protected function loadInternal(array $config, ContainerBuilder $container) {
protected function loadInternal(array $config, ContainerBuilder $container): void {
$loader = new YamlFileLoader(
$container,
new FileLocator(__DIR__.'/../../config')
Expand All @@ -38,7 +38,7 @@ protected function loadInternal(array $config, ContainerBuilder $container) {
$definition->replaceArgument(0, $config['manifest_path']);
}

public function prepend(ContainerBuilder $container) {
public function prepend(ContainerBuilder $container): void {
$config = [
'assets' => [
'version_strategy' => 'enginiro.asset.version_strategy'
Expand Down

0 comments on commit b5f317e

Please sign in to comment.