getDateTime()); } /** * Dump the instance and end the script. * * @param mixed ...$args * @return never */ public function dd(...$args) { dd($this, ...$args); } /** * Dump the instance. * * @return $this */ public function dump() { dump($this); return $this; } }