add_step_filter
Skip specific files or directories during PHP debugging to avoid stepping through vendor code or other unwanted paths using pattern matching.
Instructions
Add a step filter to skip certain files/directories during stepping (e.g., vendor code)
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| pattern | Yes | Pattern to match (e.g., '/vendor/', '*.min.js', '/regex/') | |
| type | Yes | include = step into, exclude = skip | |
| description | No | Description of the filter |