SebastianBergmann\PHPLOC\Log\CSV\History::getValuesLine PHP Метод

getValuesLine() защищенный Метод

protected getValuesLine ( array $count ) : string
$count array
Результат string
    protected function getValuesLine(array $count)
    {
        $values = ['commit' => $count['commit']];
        return $count['date'] . ',"' . implode('","', $values) . '",' . parent::getValuesLine($count);
    }