Themosis\Facades\Facade::getInstance PHP Method

getInstance() public static method

Retrieve an instance from the container based on the alias defined in the facade.
public static getInstance ( ) : mixed
return mixed
    public static function getInstance()
    {
        $name = static::getFacadeAccessor();
        return static::$app[$name];
    }