Guest User

Untitled

a guest
Jun 25th, 2018
190
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Symfony\Component\DependencyInjection;
  4.  
  5. /*
  6. * This file is part of the Symfony framework.
  7. *
  8. * (c) Fabien Potencier <fabien.potencier@symfony-project.com>
  9. *
  10. * This source file is subject to the MIT license that is bundled
  11. * with this source code in the file LICENSE.
  12. */
  13.  
  14. /**
  15. * ContainerAwareInterface should be implemented by classes that depends on a Container.
  16. *
  17. * @author Fabien Potencier <fabien.potencier@symfony-project.com>
  18. */
  19. interface ContainerAwareInterface
  20. {
  21. /**
  22. * Sets the Container.
  23. *
  24. * @param ContainerInterface $container A ContainerInterface instance
  25. */
  26. function setContainer(ContainerInterface $container = null);
  27. }
Add Comment
Please, Sign In to add comment