Ejemplo n.º 1
0
 public function getResponseData()
 {
     $result = [];
     if (!empty($this->data)) {
         $result['data'] = $this->data;
     }
     if ($this->executionContext->hasErrors()) {
         $result['errors'] = $this->executionContext->getErrorsArray();
     }
     return $result;
 }