📋 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
31 lines
480 B
PHP
31 lines
480 B
PHP
<?php
|
|
|
|
namespace Illuminate\Support\Traits;
|
|
|
|
trait Dumpable
|
|
{
|
|
/**
|
|
* Dump the given arguments and terminate execution.
|
|
*
|
|
* @param mixed ...$args
|
|
* @return never
|
|
*/
|
|
public function dd(...$args)
|
|
{
|
|
dd($this, ...$args);
|
|
}
|
|
|
|
/**
|
|
* Dump the given arguments.
|
|
*
|
|
* @param mixed ...$args
|
|
* @return $this
|
|
*/
|
|
public function dump(...$args)
|
|
{
|
|
dump($this, ...$args);
|
|
|
|
return $this;
|
|
}
|
|
}
|