Update to laravel 7

This commit is contained in:
KodeStar
2022-03-10 11:54:29 +00:00
parent 61a5a1a8b0
commit f9a19fce91
7170 changed files with 274189 additions and 283773 deletions

View File

@@ -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());
}
}