let the containers resolving capabilities find and instantiate the right service
This commit is contained in:
parent
5580a77bd7
commit
f86b20776a
|
@ -1397,7 +1397,7 @@ class Server extends ServerContainer implements IServerContainer {
|
||||||
* @return \OCA\Files_External\Service\BackendService
|
* @return \OCA\Files_External\Service\BackendService
|
||||||
*/
|
*/
|
||||||
public function getStoragesBackendService() {
|
public function getStoragesBackendService() {
|
||||||
return \OC_Mount_Config::$app->getContainer()->query('OCA\\Files_External\\Service\\BackendService');
|
return $this->query('OCA\\Files_External\\Service\\BackendService');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1406,7 +1406,7 @@ class Server extends ServerContainer implements IServerContainer {
|
||||||
* @return \OCA\Files_External\Service\GlobalStoragesService
|
* @return \OCA\Files_External\Service\GlobalStoragesService
|
||||||
*/
|
*/
|
||||||
public function getGlobalStoragesService() {
|
public function getGlobalStoragesService() {
|
||||||
return \OC_Mount_Config::$app->getContainer()->query('OCA\\Files_External\\Service\\GlobalStoragesService');
|
return $this->query('OCA\\Files_External\\Service\\GlobalStoragesService');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1415,7 +1415,7 @@ class Server extends ServerContainer implements IServerContainer {
|
||||||
* @return \OCA\Files_External\Service\UserGlobalStoragesService
|
* @return \OCA\Files_External\Service\UserGlobalStoragesService
|
||||||
*/
|
*/
|
||||||
public function getUserGlobalStoragesService() {
|
public function getUserGlobalStoragesService() {
|
||||||
return \OC_Mount_Config::$app->getContainer()->query('OCA\\Files_External\\Service\\UserGlobalStoragesService');
|
return $this->query('OCA\\Files_External\\Service\\UserGlobalStoragesService');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -1424,7 +1424,7 @@ class Server extends ServerContainer implements IServerContainer {
|
||||||
* @return \OCA\Files_External\Service\UserStoragesService
|
* @return \OCA\Files_External\Service\UserStoragesService
|
||||||
*/
|
*/
|
||||||
public function getUserStoragesService() {
|
public function getUserStoragesService() {
|
||||||
return \OC_Mount_Config::$app->getContainer()->query('OCA\\Files_External\\Service\\UserStoragesService');
|
return $this->query('OCA\\Files_External\\Service\\UserStoragesService');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in New Issue