OpenXE/classes/Core/DependencyInjection/ContainerInterface.php

21 lines
298 B
PHP
Raw Normal View History

2021-05-21 08:49:41 +02:00
<?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);
}