public function __construct($phid, TransactionList $transactions, ProjectColumnRepository $columns, array $closedColumnNames)
 {
     $this->phid = $phid;
     $this->transactions = $transactions->getChronologicallySorted();
     $this->taskColumnPHIDs = $this->extractColumnIDs($this->transactions);
     $this->columns = $columns;
     $this->closedColumnNames = $closedColumnNames;
 }