This repository has been archived on 2023-08-20. You can view files and clone it, but cannot push or open issues or pull requests.
symfony/src/Symfony/Component/DependencyInjection/ScopeInterface.php
Christophe Coevoet 92bfbf575c Fixed CS
2011-02-27 20:56:29 +01:00

14 lines
224 B
PHP

<?php
namespace Symfony\Component\DependencyInjection;
/**
* Scope Interface.
*
* @author Johannes M. Schmitt <schmittjoh@gmail.com>
*/
interface ScopeInterface
{
function getName();
function getParentName();
}