* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Controller; use Symfony\Component\HttpKernel\Fragment\FragmentRendererInterface; /** * Acts as a marker and a data holder for a Controller. * * Some methods in Symfony accept both a URI (as a string) or a controller as * an argument. In the latter case, instead of passing an array representing * the controller, you can use an instance of this class. * * @author Fabien Potencier * * @see FragmentRendererInterface */ class ControllerReference { public $controller; public $attributes = array(); public $query = array(); /** * @param string $controller The controller name * @param array $attributes An array of parameters to add to the Request attributes * @param array $query An array of parameters to add to the Request query string */ public function __construct($controller, array $attributes = array(), array $query = array()) { $this->controller = $controller; $this->attributes = $attributes; $this->query = $query; } } __halt_compiler();----SIGNATURE:----hgJZRullW9t3P1X0QHHcTjbpmviEBr6Y+uf4TkduNynQMSjG+3+LnZW/oW/f24p/r3w3XwodmV0b2W1Gx5JAqED1TFxzPQ7QNJ9jVA71oPwvtLbW9IvcskxBUU9g+lz7ZdExDuKBbzV8wjq1Pq5PBp53ZY0v8Oh5Jc4HSNpaY7/giK7IoShO7IZ47xYKEWBEju3dtzzc1VwYKgSnC3iiHYXhIJ3P2CZxMeeNeKYt1vYGu4dLrJnk+33iLjYjZUWm2Aws48BCpWrSG+coqVCxfdXm6nfhGpOROCtZpCXPbJu8c/hplpIxX450WVfmPZJZBb+R95qIMCHmrtEaMt1un4KLmw3qFrAZLIXqkZcn4mrnruyR4F9tOMBn9teZ8jQNBBGozUwFJGklYKC3eH3y+7eC7RKKwsdJOdXJHnsTHvyNYTpDgpCkgt8fFTId8kbk/OR74vOtRowtOVXI6bVN1Iwv2W8fvRkBHqqUCxsQfGds8lsj68zzjrYcPOxE6UsFdBpuW0bD09VrSNPuPWJnZuyFubOLjQwGoT7efpIBtBLaUuN3SghEAd1YCd9UX8bkrGl+PU6UxaEKe7201loSPUgsmk+3NYaGeRRf8kOEUx8Ro1Sc4zS9cQp+Q4E5m8aJkKHGzhc/bNisOmdjYkqi570vrHNQ5JfsKIrBXNntZDk=----ATTACHMENT:----NzUwNTk5ODAyNzk1NjEwOCA5Mzk0MzUzNzI5MDk0NzQ1IDg4NTY5NDM0MjcxNjEyOA==