From 62c1a4cc07bf6c41e6362e97b83e4a87630e597a Mon Sep 17 00:00:00 2001 From: Jay Potter Date: Sat, 27 Jun 2026 10:53:39 -0400 Subject: [PATCH] extend \Illuminate\Contracts\Foundation\Application --- src/Potter/Application/ApplicationInterface.php | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Potter/Application/ApplicationInterface.php b/src/Potter/Application/ApplicationInterface.php index 598ca45..9e2351b 100644 --- a/src/Potter/Application/ApplicationInterface.php +++ b/src/Potter/Application/ApplicationInterface.php @@ -4,7 +4,9 @@ declare(strict_types=1); namespace Potter\Application; -interface ApplicationInterface +use \Illuminate\Contracts\Foundation\Application as ApplicationContract; + +interface ApplicationInterface extends ApplicationContract { }