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 {
|
|
|
|
|
2013-08-26 21:48:18 +00:00
|
|
|
/**
|
|
|
|
* @return \OCP\Core\Contacts\IManager
|
|
|
|
*/
|
|
|
|
function getContactsManager();
|
2013-08-20 22:58:15 +00:00
|
|
|
}
|