How do I skip paths and/or files while debugging?

I wonder how do I skip certain paths and/or files from popup while I am debugging a script. I have tried the following to skip all the files under `/vendor/facebook` but it does not work since it continuously goes inside the files in there and start debugging things I don't want to. 

I have tried also to skip certain files as follow and again it does not work meaning no matter what the `DebugClassLoader` popup in my IDE without have a breakpoint and I want to avoid it since I don't need it.

This is how my Debugger config looks like at IDE level:

What I could be missing here?

 

0

Step filters | Files is what you are looking for: https://recordit.co/9yEQl7lSnC Please note that it only works in the web mode, in the CLI mode, they don't work.

I am not sure why you are still forced to step into DebugClassLoader.php. Is it properly mapped to the remote file (as far as I understand, it's Docker, right?) at Settings | Languages & Frameworks | PHP | Servers?

1

Eugene Morozov well you answered my question: "it only works in the web mode". I am using HTTP request from inside the IDE and not going through the browser (is what I think you called web mode) that is the reason why it's NOT skipping my files. Any plans to add this feature to CLI as well?

0

请先登录再写评论。