コード例 #1
0
 /**
  * @param int|null $id
  * @return Request\GetRecordById
  */
 public function getRecordById($id = null)
 {
     $request = new Request\GetRecordById($this->request());
     if ($id !== null) {
         $request->id($id);
     }
     return $request;
 }
コード例 #2
0
 public function testId()
 {
     $this->getRecordById->id('abc123');
     $this->assertEquals('abc123', $this->request->getParam('id'));
 }