/** * Displays error * * @return void */ public static function messageError($message) { \Deployer\CLI::writeLn(array(array(\Deployer\Logger::stamp() . ' ', \Deployer\CLI::FG_BLUE), array('Error! ', \Deployer\CLI::FG_RED), array($message))); }
/** * Prints Deployer header to Command Line * * @return void */ function printHeader() { \Deployer\CLI::writeln(array(array('Deployer', \Deployer\CLI::FG_GREEN), array(': Command Line tool for remote deploying. '))); }