Phan\Issue::__construct PHP Method

__construct() public method

public __construct ( string $type, integer $category, integer $severity, string $template, integer $remediation_difficulty, integer $type_id )
$type string
$category integer
$severity integer
$template string
$remediation_difficulty integer
$type_id integer (unique integer id for $type)
    public function __construct(string $type, int $category, int $severity, string $template, int $remediation_difficulty, int $type_id)
    {
        $this->type = $type;
        $this->category = $category;
        $this->severity = $severity;
        $this->template = $template;
        $this->remediation_difficulty = $remediation_difficulty;
        $this->type_id = $type_id;
    }