Sequenzia/install/ApplicationInstaller/Console.php

21 lines
346 B
PHP
Raw Normal View History

2013-10-27 07:25:59 +01:00
<?php
namespace ApplicationInstaller;
/**
* Console used by CompileAssets.
*/
class Console extends \Rails\Console\Console
{
private $io;
public function __construct($io)
{
$this->io = $io;
}
public function write($message, $n = 1)
{
$this->io->write($message . str_repeat("\n", $n));
}
}