| 1234567891011121314151617181920212223242526272829303132 |
- <?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;
- }
- }
|