fuc-new/vendor/illuminate/support/Traits/Dumpable.php
hellcat 1fe8673f62 1
2025-10-01 13:34:29 +08:00

33 lines
497 B
PHP
Executable File

<?php
namespace Illuminate\Support\Traits;
trait Dumpable
{
/**
* Dump the given arguments and terminate execution.
*
* @param mixed ...$args
* @return never
*/
public function dd(...$args)
{
$this->dump(...$args);
dd();
}
/**
* Dump the given arguments.
*
* @param mixed ...$args
* @return $this
*/
public function dump(...$args)
{
dump($this, ...$args);
return $this;
}
}