Skip to content

Commit 0f0f0f3

Browse files
authored
Fix compatibility with HTTP Kernel bundle type hints (#298)
1 parent 9f6510d commit 0f0f0f3

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

src/PluginInterface.php

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,11 @@ public function loadForClient(array $config, ContainerBuilder $container, string
4848
* When the container is generated for the first time, you can register compiler passes inside this method.
4949
*
5050
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
51-
*
52-
* @return void
5351
*/
54-
public function build(ContainerBuilder $container) : void;
52+
public function build(ContainerBuilder $container);
5553

5654
/**
5755
* When the bundles are booted, you can do any runtime initialization required inside this method.
58-
*
59-
* @return void
6056
*/
61-
public function boot() : void;
57+
public function boot();
6258
}

0 commit comments

Comments
 (0)