Constructs an InvokeCommand object.
string $selector: A jQuery selector.
string $method: The name of a jQuery method to invoke.
array $arguments: An optional array of arguments to pass to the method.
public function __construct($selector, $method, array $arguments = []) { $this->selector = $selector; $this->method = $method; $this->arguments = $arguments; }