コード例 #1
0
ファイル: EntityApi.php プロジェクト: tgallice/wit-php
 /**
  * @param string $entityId
  * @param string $entityValue
  * @param string $expression
  *
  * @return mixed
  */
 public function deleteExpression($entityId, $entityValue, $expression)
 {
     $response = $this->client->delete(sprintf('/entities/%s/values/%s/expressions/%s', $entityId, $entityValue, $expression));
     return $this->decodeResponse($response);
 }