Skip to content

Commit

Permalink
[10.x] Update Facade::$app to nullable (#50260)
Browse files Browse the repository at this point in the history
  • Loading branch information
villfa authored Feb 26, 2024
1 parent 9fde814 commit b8b71e0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Illuminate/Support/Facades/Facade.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ abstract class Facade
/**
* The application instance being facaded.
*
* @var \Illuminate\Contracts\Foundation\Application
* @var \Illuminate\Contracts\Foundation\Application|null
*/
protected static $app;

Expand Down Expand Up @@ -317,7 +317,7 @@ public static function defaultAliases()
/**
* Get the application instance behind the facade.
*
* @return \Illuminate\Contracts\Foundation\Application
* @return \Illuminate\Contracts\Foundation\Application|null
*/
public static function getFacadeApplication()
{
Expand All @@ -327,7 +327,7 @@ public static function getFacadeApplication()
/**
* Set the application instance.
*
* @param \Illuminate\Contracts\Foundation\Application $app
* @param \Illuminate\Contracts\Foundation\Application|null $app
* @return void
*/
public static function setFacadeApplication($app)
Expand Down

0 comments on commit b8b71e0

Please sign in to comment.