With PHP 7.2 (with vendor directory updated at that level) dd() calls are being displayed on the screen and breaking other output.
Seems to be a problem with the related composer libraries (vendor/symfony/var-dumper etc)?

Comments

Jons created an issue. See original summary.

willzyx’s picture

Status: Active » Closed (works as designed)

@Jons thanks for reporting.

I suspect that the dd() function invoked is not the devel's one but the the one declared in illuminate/support.
You can use ddm()or explicitly call \Drupal::service('devel.dumper')->debug($data, $label); to use devel's function.

Thanks