SebastianBergmann\PHPLOC\Log\CSV\History::getValuesLine PHP Method

getValuesLine() protected method

protected getValuesLine ( array $count ) : string
$count array
return string
    protected function getValuesLine(array $count)
    {
        $values = ['commit' => $count['commit']];
        return $count['date'] . ',"' . implode('","', $values) . '",' . parent::getValuesLine($count);
    }