示例#1
0
 /**
  * @param $responseArray
  * @return bool
  */
 protected function errors($responseArray)
 {
     parent::errors($responseArray);
     if (isset($this->errors['validationErrors'])) {
         $this->validationErrors = $this->errors['validationErrors'];
     }
 }
 /**
  * @param $responseArray
  * @return bool
  */
 protected function errors($responseArray)
 {
     if (parent::errors($responseArray)) {
         if ($this->status == 'NotFound') {
             $this->notFound = true;
         }
     }
 }