Cake\Console\Shell::info PHP Method

info() public method

Convenience method for out() that wraps message between tag
See also: http://book.cakephp.org/3.0/en/console-and-shells.html#Shell::out
public info ( string | array | null $message = null, integer $newlines = 1, integer $level = Shell::NORMAL ) : integer | boolean
$message string | array | null A string or an array of strings to output
$newlines integer Number of newlines to append
$level integer The message's output level, see above.
return integer | boolean The number of bytes returned from writing to stdout.
    public function info($message = null, $newlines = 1, $level = Shell::NORMAL)
    {
        return $this->out('<info>' . $message . '</info>', $newlines, $level);
    }