📋 Commit iniziale con: - ✅ Documentazione unificata in docs/ - ✅ Codice Laravel in netgescon-laravel/ - ✅ Script automazione in scripts/ - ✅ Configurazione sync rsync - ✅ Struttura organizzata e pulita 🔄 Versione: 2025.07.19-1644 🎯 Sistema pronto per Git distribuito
21 lines
477 B
PHP
21 lines
477 B
PHP
<?php
|
|
|
|
namespace Illuminate\Console\View\Components;
|
|
|
|
use Symfony\Component\Console\Output\OutputInterface;
|
|
|
|
class Error extends Component
|
|
{
|
|
/**
|
|
* Renders the component using the given arguments.
|
|
*
|
|
* @param string $string
|
|
* @param int $verbosity
|
|
* @return void
|
|
*/
|
|
public function render($string, $verbosity = OutputInterface::VERBOSITY_NORMAL)
|
|
{
|
|
with(new Line($this->output))->render('error', $string, $verbosity);
|
|
}
|
|
}
|