Skip to content

Commit 71035e1

Browse files
[HttpKernel] Revert native return types on KernelInterface
1 parent 95f7fb6 commit 71035e1

File tree

1 file changed

+9
-3
lines changed

1 file changed

+9
-3
lines changed

KernelInterface.php

+9-3
Original file line numberDiff line numberDiff line change
@@ -33,20 +33,26 @@ public function registerBundles(): iterable;
3333

3434
/**
3535
* Loads the container configuration.
36+
*
37+
* @return void
3638
*/
37-
public function registerContainerConfiguration(LoaderInterface $loader): void;
39+
public function registerContainerConfiguration(LoaderInterface $loader);
3840

3941
/**
4042
* Boots the current kernel.
43+
*
44+
* @return void
4145
*/
42-
public function boot(): void;
46+
public function boot();
4347

4448
/**
4549
* Shutdowns the kernel.
4650
*
4751
* This method is mainly useful when doing functional testing.
52+
*
53+
* @return void
4854
*/
49-
public function shutdown(): void;
55+
public function shutdown();
5056

5157
/**
5258
* Gets the registered bundle instances.

0 commit comments

Comments
 (0)