Sequenzia/install/ApplicationInstaller/Console.php
2013-10-27 01:25:59 -05:00

21 lines
346 B
PHP
Executable File

<?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));
}
}