Skip to content

Commit

Permalink
Fix compatibility with HTTP Kernel bundle type hints (#298)
Browse files Browse the repository at this point in the history
  • Loading branch information
gregurco committed Feb 27, 2020
1 parent 9f6510d commit 0f0f0f3
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions src/PluginInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -48,15 +48,11 @@ public function loadForClient(array $config, ContainerBuilder $container, string
* When the container is generated for the first time, you can register compiler passes inside this method.
*
* @param \Symfony\Component\DependencyInjection\ContainerBuilder $container
*
* @return void
*/
public function build(ContainerBuilder $container) : void;
public function build(ContainerBuilder $container);

/**
* When the bundles are booted, you can do any runtime initialization required inside this method.
*
* @return void
*/
public function boot() : void;
public function boot();
}

0 comments on commit 0f0f0f3

Please sign in to comment.