예제 #1
0
 function it_gets_the_version_from_the_accept_header(\LaraPackage\Api\Contracts\Request\AcceptHeader $acceptHeaderParser)
 {
     $acceptHeaderParser->version()->shouldBeCalledTimes(1)->willReturn(4);
     $this->version()->shouldReturn(4);
 }
예제 #2
0
파일: Parser.php 프로젝트: larapackage/api
 /**
  * @inheritdoc
  */
 public function version()
 {
     return $this->acceptHeader->version();
 }