コード例 #1
0
ファイル: Console.php プロジェクト: nomaanp/zf2rapid
 /**
  * Write a piece of text at the coordinates of $x and $y
  *
  * @param string   $text Text to write
  * @param int      $x    Console X coordinate (column)
  * @param int      $y    Console Y coordinate (row)
  * @param null|int $color
  * @param null|int $bgColor
  *
  * @return void
  */
 public function writeAt($text, $x, $y, $color = null, $bgColor = null)
 {
     $this->adapter->writeAt($text, $x, $y, $color, $bgColor);
 }