Query the timefactory instead of creating it

Signed-off-by: Lukas Reschke <lukas@statuscode.ch>
Este commit está contenido en:
Lukas Reschke 2016-10-28 12:56:41 +02:00
padre 3e6dd86ee4
commit df7fd2b57c
No se encontró ninguna clave conocida en la base de datos para esta firma
ID de clave GPG: B9F6980CF6E759B1
Se han modificado 2 ficheros con 3 adiciones y 3 borrados

Ver fichero

@ -350,7 +350,7 @@ class OC_App {
new \OC\App\AppStore\Fetcher\AppFetcher(
\OC::$server->getAppDataDir('appstore'),
\OC::$server->getHTTPClientService(),
new \OC\AppFramework\Utility\TimeFactory(),
\OC::$server->query(\OC\AppFramework\Utility\TimeFactory::class),
$config
),
\OC::$server->getHTTPClientService(),

Ver fichero

@ -96,7 +96,7 @@ class Application extends App {
return new AppFetcher(
$server->getAppDataDir('appstore'),
$server->getHTTPClientService(),
new TimeFactory(),
$server->query(TimeFactory::class),
$server->getConfig()
);
});
@ -106,7 +106,7 @@ class Application extends App {
return new CategoryFetcher(
$server->getAppDataDir('appstore'),
$server->getHTTPClientService(),
new TimeFactory()
$server->query(TimeFactory::class)
);
});
}