Nelmio\Alice\Definition\Value\FunctionCallValue::getName PHP Method

getName() public method

public getName ( ) : string
return string
    public function getName() : string
    {
        return $this->name;
    }

Usage Example

Ejemplo n.º 1
0
 public function testReadAccessorsReturnPropertiesValues()
 {
     $name = 'setUsername';
     $arguments = [new \stdClass()];
     $value = new FunctionCallValue($name, $arguments);
     $this->assertEquals($name, $value->getName());
     $this->assertEquals($arguments, $value->getArguments());
     $this->assertEquals([$name, $arguments], $value->getValue());
 }
All Usage Examples Of Nelmio\Alice\Definition\Value\FunctionCallValue::getName