supports() public method

{@inheritDoc}
public supports ( $request )
Beispiel #1
0
 /**
  * @test
  */
 public function shouldNotSupportCaptureAndNotArrayAsModel()
 {
     $action = new CaptureAction();
     $request = new Capture(new \stdClass());
     $this->assertFalse($action->supports($request));
 }