You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using Lando + PhpStorm + Xdebug, Manual initiation with https://drupal10.lndo.site?XDEBUG_SESSION_START=lando works well, and PhpStorm grabs focus, showing me the variables at the break point.
But I am also trying to initiate PhpStorm and Xdebug from the CLI, but can't make this method work:
export XDEBUG_SESSION="PHPSTORM"
I added this in index.php and verified that xdebug.trigger_value isn't set:
xdebug_info();
exit;
The value of the variable does not matter unless you have set up a trigger value with xdebug.trigger_value.
Using Lando + PhpStorm + Xdebug, Manual initiation with
https://drupal10.lndo.site?XDEBUG_SESSION_START=lando
works well, and PhpStorm grabs focus, showing me the variables at the break point.But I am also trying to initiate PhpStorm and Xdebug from the CLI, but can't make this method work:
export XDEBUG_SESSION="PHPSTORM"
I added this in
index.php
and verified thatxdebug.trigger_value
isn't set:From https://xdebug.org/docs/step_debug#activate-debugger-cmd
.lando.yml
The text was updated successfully, but these errors were encountered: