nextcloud/lib/public/appframework/iappcontainer.php

26 lines
424 B
PHP
Raw Normal View History

2013-08-21 03:02:15 +04:00
<?php
namespace OCP\AppFramework;
use OCP\AppFramework\IApi;
use OCP\Core\IContainer;
/**
* Class IAppContainer
* @package OCP\AppFramework
*
* This container interface provides short cuts for app developers to access predefined app service.
*/
interface IAppContainer extends IContainer{
/**
* @return IApi
*/
function getCoreApi();
/**
* @return \OCP\Core\IServerContainer
*/
function getServer();
}