Exemplo n.º 1
0
 public function message_update(Constellation $constellation, CNMessage $message)
 {
     $command = new CNMessageUpdate();
     $command->setContent($message->data());
     $options = $constellation->defaultCommandOptions();
     $options['id'] = $message->context();
     $response = $constellation->execute($command, $options);
     return $response->result;
 }