mirror of
https://github.com/linuxserver/Heimdall.git
synced 2025-11-13 11:22:53 +09:00
Update to laravel 7
This commit is contained in:
@@ -22,7 +22,7 @@ class GitData extends AbstractApi
|
||||
*/
|
||||
public function blobs()
|
||||
{
|
||||
return new Blobs($this->client);
|
||||
return new Blobs($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -30,7 +30,7 @@ class GitData extends AbstractApi
|
||||
*/
|
||||
public function commits()
|
||||
{
|
||||
return new Commits($this->client);
|
||||
return new Commits($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -38,7 +38,7 @@ class GitData extends AbstractApi
|
||||
*/
|
||||
public function references()
|
||||
{
|
||||
return new References($this->client);
|
||||
return new References($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -46,7 +46,7 @@ class GitData extends AbstractApi
|
||||
*/
|
||||
public function tags()
|
||||
{
|
||||
return new Tags($this->client);
|
||||
return new Tags($this->getClient());
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -54,6 +54,6 @@ class GitData extends AbstractApi
|
||||
*/
|
||||
public function trees()
|
||||
{
|
||||
return new Trees($this->client);
|
||||
return new Trees($this->getClient());
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user