You are here

public function SelectFeedCommand::render in Heartbeat 8

Return an array to be run through json_encode and sent to the client.

Overrides CommandInterface::render

File

src/Ajax/SelectFeedCommand.php, line 19

Class

SelectFeedCommand

Namespace

Drupal\heartbeat\Ajax

Code

public function render() {
  return array(
    'command' => 'selectFeed',
    'feed' => $this->message,
  );
}