createMethodExtractor() public method

Ejemplo n.º 1
0
 public function methodIs($matcher)
 {
     $this->appendMatcher($matcher, $this->extractorFactory->createMethodExtractor());
     return $this;
 }
Ejemplo n.º 2
0
 public function testGetMethod()
 {
     $this->request->expects($this->once())->method('getMethod')->will($this->returnValue('POST'));
     $extractor = $this->extractorFactory->createMethodExtractor();
     $this->assertSame('POST', $extractor($this->request));
 }