You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nextcloud-server/lib/public/core/icontainer.php

19 lines
344 B

<?php
namespace OCP\Core;
/**
* Class IContainer
*
* IContainer is the basic interface to be used for any internal dependency injection mechanism
*
* @package OCP\Core
*/
interface IContainer {
function query($name);
function registerParameter($name, $value);
function registerService($name, \Closure $closure, $shared = true);
}