mageekguy\atoum\mock\php\method\argument::getName PHP Method

getName() public method

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

Usage Example

Ejemplo n.º 1
0
 public function test__construct()
 {
     $argument = new php\method\argument($name = uniqid());
     $this->assert->string($argument->getName())->isEqualTo($name);
 }