Laravelista\LumenVendorPublish\VendorPublishCommand::status PHP Метод

status() защищенный Метод

Write a status message to the console.
protected status ( string $from, string $to, string $type ) : void
$from string
$to string
$type string
Результат void
    protected function status($from, $to, $type)
    {
        $from = str_replace(base_path(), '', realpath($from));
        $to = str_replace(base_path(), '', realpath($to));
        $this->line('<info>Copied ' . $type . '</info> <comment>[' . $from . ']</comment> <info>To</info> <comment>[' . $to . ']</comment>');
    }