ScopeInterface.php 224 B

1234567891011121314
  1. <?php
  2. namespace Symfony\Component\DependencyInjection;
  3. /**
  4. * Scope Interface.
  5. *
  6. * @author Johannes M. Schmitt <schmittjoh@gmail.com>
  7. */
  8. interface ScopeInterface
  9. {
  10. function getName();
  11. function getParentName();
  12. }