Implements \Drupal\Core\Ajax\CommandInterface::render().
Overrides CommandInterface::render
public function render() {
$command = array(
'command' => 'viewsSetForm',
'output' => $this->output,
'title' => $this->title,
);
if (isset($this->url)) {
$command['url'] = $this->url;
}
return $command;
}