Skip to content
Snippets Groups Projects
Commit 44e6c4f3 authored by Joas Schilling's avatar Joas Schilling
Browse files

Do not "use" Server

parent 5eddde64
Branches
No related tags found
No related merge requests found
......@@ -21,7 +21,6 @@
namespace OC\Connector\Sabre;
use Sabre\DAV\Server;
use Sabre\DAV\ServerPlugin;
use Symfony\Component\EventDispatcher\EventDispatcherInterface;
......@@ -39,9 +38,9 @@ class ListenerPlugin extends ServerPlugin {
/**
* This initialize the plugin
*
* @param Server $server
* @param \Sabre\DAV\Server $server
*/
public function initialize(Server $server) {
public function initialize(\Sabre\DAV\Server $server) {
$server->on('beforeMethod', array($this, 'emitListener'), 15);
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment