コード例 #1
0
ファイル: SvgRenderSpec.php プロジェクト: JamesForks/poser
 function let(TextSizeCalculatorInterface $calculator)
 {
     $calculator->calculateWidth(Argument::any())->willReturn(20);
     $this->beConstructedWith($calculator);
 }
コード例 #2
0
ファイル: LocalSvgRenderer.php プロジェクト: badges/poser
 /**
  * @param $text
  *
  * @return float
  */
 private function stringWidth($text)
 {
     return $this->textSizeCalculator->calculateWidth($text);
 }