1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Contract\Container; |
4: | |
5: | /** |
6: | * @api |
7: | */ |
8: | interface BeforeGlobalContainerSetEventInterface |
9: | { |
10: | /** |
11: | * Get the container that will be set, or null if it will be unset |
12: | */ |
13: | public function getContainer(): ?ContainerInterface; |
14: | } |
15: |