From 3f82eaf0205b3dc06d9452977b11db2a4c45265a Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sat, 27 Jun 2026 11:02:04 -0400 Subject: [PATCH] extend CachesConfiguration, CachesRoutes, HttpKernelInterface --- src/Potter/Application/ApplicationInterface.php | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/Potter/Application/ApplicationInterface.php b/src/Potter/Application/ApplicationInterface.php index 9e2351b..e1d97c2 100644 --- a/src/Potter/Application/ApplicationInterface.php +++ b/src/Potter/Application/ApplicationInterface.php @@ -5,8 +5,10 @@ declare(strict_types=1); namespace Potter\Application; use \Illuminate\Contracts\Foundation\Application as ApplicationContract; +use \Illuminate\Contracts\Foundation\CachesConfiguration; +use \Illuminate\Contracts\Foundation\CachesRoutes; +use \Symfony\Component\HttpKernel\HttpKernelInterface; -interface ApplicationInterface extends ApplicationContract -{ - -} +interface ApplicationInterface extends ApplicationContract, + CachesConfiguration, CachesRoutes, HttpKernelInterface +{ }