diff options
Diffstat (limited to 'lib/public/AppFramework/Bootstrap/IBootContext.php')
-rw-r--r-- | lib/public/AppFramework/Bootstrap/IBootContext.php | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/public/AppFramework/Bootstrap/IBootContext.php b/lib/public/AppFramework/Bootstrap/IBootContext.php index ee0bef6a5fa..86232cef4ad 100644 --- a/lib/public/AppFramework/Bootstrap/IBootContext.php +++ b/lib/public/AppFramework/Bootstrap/IBootContext.php @@ -41,20 +41,20 @@ interface IBootContext { * * Useful to register and query app-specific services * - * @return IAppContainer|ContainerInterface + * @return ContainerInterface|IAppContainer * @since 20.0.0 */ - public function getAppContainer(): IAppContainer; + public function getAppContainer(): ContainerInterface; /** * Get hold of the server DI container * * Useful to register and query system-wide services * - * @return IServerContainer + * @return ContainerInterface|IServerContainer * @since 20.0.0 */ - public function getServerContainer(): IServerContainer; + public function getServerContainer(): ContainerInterface; /** * Invoke the given callable and inject all parameters based on their types |