v7‰PNG  IHDR Ÿ f Õ†C1 sRGB ®Îé gAMA ± üa pHYs à ÃÇo¨d GIDATx^íÜL”÷ð÷Yçªö("Bh_ò«®¸¢§q5kÖ*:þ0A­ºšÖ¥]VkJ¢M»¶f¸±8\k2íll£1]q®ÙÔ‚ÆT * * This source file is subject to the MIT license that is bundled * with this source code in the file LICENSE. */ /** * sfServiceParameter represents a parameter reference. * * @package symfony * @subpackage dependency_injection * @author Fabien Potencier * @version SVN: $Id: sfServiceReference.php 267 2009-03-26 19:56:18Z fabien $ */ class sfServiceParameter { protected $id = null; /** * Constructor. * * @param string $id The parameter key */ public function __construct($id) { $this->id = $id; } /** * __toString. * * @return string The parameter key */ public function __toString() { return (string) $this->id; } }