コード例 #1
0
ファイル: History.php プロジェクト: sebastianbergmann/phploc
 /**
  * @param array $count
  *
  * @return string
  */
 protected function getValuesLine(array $count)
 {
     $values = ['commit' => $count['commit']];
     return $count['date'] . ',"' . implode('","', $values) . '",' . parent::getValuesLine($count);
 }
コード例 #2
0
ファイル: History.php プロジェクト: khiemnd-ait/cakephp
 /**
  * @param  array $count
  * @return string
  */
 protected function getValuesLine(array $count)
 {
     $values = array('commit' => $count['commit']);
     return '"' . implode('","', $values) . '",' . parent::getValuesLine($count);
 }