server/lib/public/core/iservercontainer.php

19 lines
247 B
PHP
Raw Normal View History

2013-08-20 22:58:15 +00:00
<?php
namespace OCP\Core;
/**
* Class IServerContainer
* @package OCP\Core
*
* This container holds all ownCloud services
*/
interface IServerContainer {
/**
* @return \OCP\Core\Contacts\IManager
*/
function getContactsManager();
2013-08-20 22:58:15 +00:00
}