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

__toString() public method

public __toString ( ) : string
return string
    public function __toString() : string
    {
        return 'none';
    }

Usage Example

Beispiel #1
0
 public function testReadAccessorsReturnPropertiesValues()
 {
     $call = new NoMethodCall();
     $this->assertEquals('none', $call->__toString());
 }