Kirby\Cli\Command\Make\Blueprint::info PHP Method

info() protected method

protected info ( )
    protected function info()
    {
        $this->output->writeln('');
        $this->output->writeln('');
        $this->output->writeln('<info>The "' . $this->name() . '" blueprint has been created!</info>');
        $this->output->writeln('');
        $this->output->writeln('Don\'t forget to define fields in the final blueprint file:');
        $this->output->writeln('<comment>/site/blueprints/' . basename($this->file()) . '</comment>');
        $this->output->writeln('');
        $this->output->writeln('You can read more about fields and other options in the docs:');
        $this->output->writeln('<comment>https://getkirby.com/docs/panel/blueprints</comment>');
        $this->output->writeln('');
        $this->output->writeln('');
    }