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 GithubRepoFullName implements Identifier
{
* @var string
private $fullName;
* GithubRepoFullName constructor.
*
* @param $fullName
public function __construct(string $fullName)
$this->fullName = $fullName;
}
* @return string
public function getFullName() : string
return $this->fullName;
public function __toString() : string