Parameter.php 767 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. <?php
  2. /*
  3. * This file is part of the Symfony package.
  4. *
  5. * (c) Fabien Potencier <fabien@symfony.com>
  6. *
  7. * For the full copyright and license information, please view the LICENSE
  8. * file that was distributed with this source code.
  9. */
  10. namespace Symfony\Component\DependencyInjection;
  11. /**
  12. * Parameter represents a parameter reference.
  13. *
  14. * @author Fabien Potencier <fabien@symfony.com>
  15. *
  16. * @api
  17. */
  18. class Parameter
  19. {
  20. private $id;
  21. /**
  22. * Constructor.
  23. *
  24. * @param string $id The parameter key
  25. */
  26. public function __construct($id)
  27. {
  28. $this->id = $id;
  29. }
  30. /**
  31. * __toString.
  32. *
  33. * @return string The parameter key
  34. */
  35. public function __toString()
  36. {
  37. return (string) $this->id;
  38. }
  39. }