mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-12-03 05:29:53 +09:00
Update to laravel 7
This commit is contained in:
@@ -22,7 +22,7 @@ class Enterprise extends AbstractApi
|
||||
*/
|
||||
public function stats()
|
||||
{
|
||||
return new Stats($this->client);
|
||||
return new Stats($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -30,7 +30,7 @@ class Enterprise extends AbstractApi
|
||||
*/
|
||||
public function license()
|
||||
{
|
||||
return new License($this->client);
|
||||
return new License($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -38,7 +38,7 @@ class Enterprise extends AbstractApi
|
||||
*/
|
||||
public function console()
|
||||
{
|
||||
return new ManagementConsole($this->client);
|
||||
return new ManagementConsole($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -46,6 +46,6 @@ class Enterprise extends AbstractApi
|
||||
*/
|
||||
public function userAdmin()
|
||||
{
|
||||
return new UserAdmin($this->client);
|
||||
return new UserAdmin($this->getClient());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user