Ejemplo n.º 1
0
 /**
  * @param int   $id
  * @param array $embedded
  * @return OrderWithEmbeddedTransfer|null
  */
 public function get($id, array $embedded = [])
 {
     $endpoint = new Get($this->getTransport());
     // Ask for embedded fields
     if (!empty($embedded)) {
         $endpoint->setParams(['embedded' => $embedded]);
     }
     $result = $this->performWithId($endpoint, $id);
     return $result ? OrderWithEmbeddedTransfer::make($result) : null;
 }
Ejemplo n.º 2
0
 /**
  * @expectedException \Hitmeister\Component\Api\Exceptions\RuntimeException
  * @expectedExceptionMessage Required params id is not set
  */
 public function testExceptionOnEmptyId()
 {
     $get = new Get($this->transport);
     $get->getURI();
 }