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

14 lines
237 B
PHP
Raw Normal View History

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