Esempio n. 1
0
 protected function pad($str)
 {
     return str_repeat(' ', strlen(Color::strip(Color::convert($str))));
 }
Esempio n. 2
0
 /**
  * Writes the message $msg to STDERR.
  *
  * @param string $msg The message to output
  * @param string $status Output status
  *
  * @return \Phrekyll\Outputter
  */
 public function stderr($msg, $status = self::STATUS_FAIL)
 {
     $msg = Color::strip(Color::convert($msg));
     $this->lines[] = trim($msg);
     return $this;
 }
Esempio n. 3
0
 /**
  * Writes the message $msg to STDERR.
  *
  * @param string $msg The message to output
  * @param string $status Output status
  *
  * @return \Phrekyll\Outputter
  */
 public function stderr($msg, $status = self::STATUS_FAIL)
 {
     $msg = Color::convert($status . $msg . "\n");
     return parent::stderr($msg, $status);
 }