for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DevBoardLib\GithubCore\Repo;
use DevBoardLib\GithubCore\Identifier;
/**
* @todo: Reason this class exists
*/
class GithubRepoName implements Identifier
{
* @var string
private $name;
* GithubRepoName constructor.
*
* @param $name
public function __construct(string $name)
$this->name = $name;
}
* @return string
public function getName() : string
return $this->name;
public function __toString() : string