extend CachesConfiguration, CachesRoutes, HttpKernelInterface

This commit is contained in:
2026-06-27 11:02:04 -04:00
parent 1fd7fc1c74
commit 3f82eaf020
@@ -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
{ }