Example #1
0
 /**
  * @param array $count
  *
  * @return string
  */
 protected function getValuesLine(array $count)
 {
     $values = ['commit' => $count['commit']];
     return $count['date'] . ',"' . implode('","', $values) . '",' . parent::getValuesLine($count);
 }
Example #2
0
 /**
  * @param  array $count
  * @return string
  */
 protected function getValuesLine(array $count)
 {
     $values = array('commit' => $count['commit']);
     return '"' . implode('","', $values) . '",' . parent::getValuesLine($count);
 }