예제 #1
0
파일: Request.php 프로젝트: minond/http
 /**
  * method setter
  * @param string $method
  * @throws InvalidArgumentException
  */
 public function setMethod($method)
 {
     $method = strtoupper($method);
     if (!Verb::valid($method)) {
         throw new InvalidArgumentException(sprintf('Invalid method type: %s, expects: [%s]', $method, implode(', ', Verb::options())));
     }
     $this->method = $method;
 }
예제 #2
0
파일: VerbTest.php 프로젝트: minond/http
 public function testValidatingInvalidOptionsReturnsFalse()
 {
     $this->assertFalse(Verb::valid('invalid'));
 }