getName() public méthode

Returns the name of this repository
public getName ( ) : string
Résultat string The name of the repo
 /**
  * @dataProvider validNameProvider
  */
 public function testValidRepoName($name)
 {
     $config = new Config('/tmp');
     $repo = new Repository($name, $config);
     $this->assertSame($name, $repo->getName());
 }