* * For the full copyright and license information, please view the LICENSE * file that was distributed with this source code. */ namespace Symfony\Component\HttpKernel\Event; use Symfony\Component\HttpKernel\HttpKernelInterface; use Symfony\Component\HttpFoundation\Request; /** * Allows filtering of controller arguments. * * You can call getController() to retrieve the controller and getArguments * to retrieve the current arguments. With setArguments() you can replace * arguments that are used to call the controller. * * Arguments set in the event must be compatible with the signature of the * controller. * * @author Christophe Coevoet */ class FilterControllerArgumentsEvent extends FilterControllerEvent { private $arguments; public function __construct(HttpKernelInterface $kernel, callable $controller, array $arguments, Request $request, $requestType) { parent::__construct($kernel, $controller, $request, $requestType); $this->arguments = $arguments; } /** * @return array */ public function getArguments() { return $this->arguments; } public function setArguments(array $arguments) { $this->arguments = $arguments; } } __halt_compiler();----SIGNATURE:----wqLuPA2HnK2OIa4nridco1bs1vfZRM81R3fYMHZjwFsaGcxqjsgiGtBd3TXTIh37pLO9q0AzVuPLeiZjJ5VpHJ2z8g8mCMMKjzlOZuaDVyukk+ua7UxKDwYqmAr9d5B9VAGCetS7Zjq5TN2m+jml6w10rMoN+rhToJ0tQ5VRQ4/ofF65PHpqjMeLRGDBVxhkus3qRCGQFfL8qIpzW081mf2cH7D6jyUOK6xPofVoRuGMJBx+DO0uMsvYDeqZ9tMmsTq3HUuhm1OkYj/cOrmkIMcRDMTtPaivGQKMs6FBH0vC72F24TU83Jh8aLeXdz7oz1Dq7np0PwZ862z58FOWkcBX8NX+SpSNe57fRxZkr62LGTC1K7AEc4UqZf4TxI7cm3+ptNrou2MZ8AZ68AWlhUn1UQQL6R6NMoI8+ss5i3eCk9jbvzrjYVDY1MhWy88I6C5FHPQufMCj2jacF4GqQ/+1cmk1MFvh+FhmhioX+XZSH2fduYL8AIpsu4RB6TQomLUfArOlsvsEigXK2FN1Z38pQw4Lr1tsqb3NITMA0OeWufR66aKG9HM3bEdQvcH+UwHgUwaZXYn7HmXiNKc4Pj+kZofqBMqN1MDwZIm1SgPIwlct4hbS9khGTs/Lpg03S8Ahjq2cNPLHgIUBc6UiW/3GivtAGontPLBvD0b5TG8=----ATTACHMENT:----OTY2OTMzMTY5NzgyNzQ4MSA5MTg2OTI1NzQyNDgzOTA0IDc0ODY4NDQ0OTcxNTc3NzY=