Gitamin\Commands\Issue\AddIssueCommand::__construct PHP Method

__construct() public method

Create a new add issue command instance.
public __construct ( integer $authorId, integer $projectId, string $title, string $description )
$authorId integer
$projectId integer
$title string
$description string
    public function __construct($authorId, $projectId, $title, $description)
    {
        $this->authorId = $authorId;
        $this->projectId = $projectId;
        $this->title = $title;
        $this->description = $description;
    }
AddIssueCommand