From a9b235d3e1cd55273a4b9cbd6f221dabe1089463 Mon Sep 17 00:00:00 2001 From: Aldarien Date: Tue, 9 Feb 2021 17:37:58 -0300 Subject: [PATCH] FIX: static property --- app/Contract/Auth.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Contract/Auth.php b/app/Contract/Auth.php index a2128fb..ba3d745 100644 --- a/app/Contract/Auth.php +++ b/app/Contract/Auth.php @@ -9,7 +9,7 @@ class Auth { return new AuthService(); } - protected $instance; + protected static $instance; protected static function getInstance() { if (self::$instance === null) { self::$instance = self::newInstance();