Nelmio\Alice\Definition\MethodCall\NoMethodCall::getArguments PHP Method

getArguments() public method

public getArguments ( )
    public function getArguments()
    {
        $this->throwException(__METHOD__);
    }

Usage Example

Beispiel #1
0
 /**
  * @expectedException \LogicException
  * @expectedExceptionMessage By its nature, "Nelmio\Alice\Definition\MethodCall\NoMethodCall::getArguments()" should not be called.
  */
 public function testCannotGetArguments()
 {
     $call = new NoMethodCall();
     $call->getArguments();
 }