Browse Source

Use correct typehint

tags/v9.1.0beta1
Roeland Jago Douma 8 years ago
parent
commit
eb1d5fdaf8
No account linked to committer's email address
1 changed files with 1 additions and 1 deletions
  1. 1
    1
      lib/private/Server.php

+ 1
- 1
lib/private/Server.php View File

@@ -623,7 +623,7 @@ class Server extends ServerContainer implements IServerContainer {
$this->registerService('ShareManager', function(Server $c) {
$config = $c->getConfig();
$factoryClass = $config->getSystemValue('sharing.managerFactory', '\OC\Share20\ProviderFactory');
/** @var \OC\Share20\IProviderFactory $factory */
/** @var \OCP\Share\IProviderFactory $factory */
$factory = new $factoryClass($this);

$manager = new \OC\Share20\Manager(

Loading…
Cancel
Save