mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
21 lines
298 B
PHP
21 lines
298 B
PHP
|
<?php
|
||
|
|
||
|
namespace Xentral\Core\DependencyInjection;
|
||
|
|
||
|
interface ContainerInterface
|
||
|
{
|
||
|
/**
|
||
|
* @param string $name
|
||
|
*
|
||
|
* @return bool
|
||
|
*/
|
||
|
public function has($name);
|
||
|
|
||
|
/**
|
||
|
* @param string $name
|
||
|
*
|
||
|
* @return mixed|object
|
||
|
*/
|
||
|
public function get($name);
|
||
|
}
|