コード例 #1
0
ファイル: CreateOrderApiResponse.php プロジェクト: artad/SDK
 /**
  * @param $responseArray
  * @return bool
  */
 protected function errors($responseArray)
 {
     parent::errors($responseArray);
     if (isset($this->errors['validationErrors'])) {
         $this->validationErrors = $this->errors['validationErrors'];
     }
 }
コード例 #2
0
 /**
  * @param $responseArray
  * @return bool
  */
 protected function errors($responseArray)
 {
     if (parent::errors($responseArray)) {
         if ($this->status == 'NotFound') {
             $this->notFound = true;
         }
     }
 }