for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace DevBoardLib\GithubCore\Issue;
use DevBoardLib\GithubCore\Identifier;
/**
* Class GithubIssueId.
*/
class GithubIssueId implements Identifier
{
* @var
private $githubIssueId;
* IssueId constructor.
*
* @param $githubIssueId
public function __construct($githubIssueId)
$this->githubIssueId = $githubIssueId;
}
* @return string
public function __toString()
return (string) $this->githubIssueId;