Skip to content

Commit 2be2411

Browse files
authored
Prevent bug emoji on dumpable dd (#52234)
1 parent ab2bfa8 commit 2be2411

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

Traits/EnumeratesValues.php

+1-3
Original file line numberDiff line numberDiff line change
@@ -229,9 +229,7 @@ public function some($key, $operator = null, $value = null)
229229
*/
230230
public function dd(...$args)
231231
{
232-
$this->dump(...$args);
233-
234-
dd();
232+
dd($this->all(), ...$args);
235233
}
236234

237235
/**

0 commit comments

Comments
 (0)