Nelmio\Alice\Definition\Fixture\FixtureId::getId PHP Method

getId() public method

public getId ( ) : string
return string
    public function getId() : string
    {
        return $this->id;
    }

Usage Example

Beispiel #1
0
 public function testAccessor()
 {
     $id = new FixtureId('foo');
     $this->assertEquals('foo', $id->getId());
 }