Nelmio\Alice\Definition\Value\FunctionCallValue::getName PHP Méthode

getName() public méthode

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

Usage Example

 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