示例#1
0
文件: Printf.php 项目: nochso/diff
 /**
  * Prepare this helper before first using it to format lines.
  *
  * @param \nochso\Diff\Diff $diff
  */
 public function prepare(Diff $diff)
 {
     $this->lineCountLength = strlen($diff->getMaxLineNumber());
 }
示例#2
0
 public function format(Diff $diff)
 {
     $this->lineCountLength = strlen($diff->getMaxLineNumber());
     return parent::format($diff);
 }