getName() public method

Returns the name of this repository
public getName ( ) : string
return string The name of the repo
コード例 #1
0
 /**
  * @dataProvider validNameProvider
  */
 public function testValidRepoName($name)
 {
     $config = new Config('/tmp');
     $repo = new Repository($name, $config);
     $this->assertSame($name, $repo->getName());
 }