You are here

public function GenericEvent::setArguments in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/event-dispatcher/GenericEvent.php \Symfony\Component\EventDispatcher\GenericEvent::setArguments()

Set args property.

Parameters

array $args Arguments.:

Return value

GenericEvent

File

vendor/symfony/event-dispatcher/GenericEvent.php, line 109

Class

GenericEvent
Event encapsulation class.

Namespace

Symfony\Component\EventDispatcher

Code

public function setArguments(array $args = array()) {
  $this->arguments = $args;
  return $this;
}