Skip to content

Commit

Permalink
Add missing interfaces into declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
alies-dev committed Mar 17, 2024
1 parent e71f57e commit e3806c7
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion stubs/Foundation/Application.stubphp
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,17 @@

namespace Illuminate\Foundation;

class Application
use Illuminate\Container\Container;
use Illuminate\Contracts\Foundation\Application as ApplicationContract;
use Illuminate\Contracts\Foundation\CachesConfiguration;
use Illuminate\Contracts\Foundation\CachesRoutes;
use Illuminate\Support\Traits\Macroable;
use Symfony\Component\HttpKernel\HttpKernelInterface;

class Application extends Container implements ApplicationContract, CachesConfiguration, CachesRoutes, HttpKernelInterface
{
use Macroable;

/**
* Get or check the current application environment.
* @param string|list<string> ...$environments
Expand Down

0 comments on commit e3806c7

Please sign in to comment.