When it’s done, PhpStorm will automatically re-run your test with the debugger enabled – but, not much happens. That’s because we haven’t told the debugger to pause anywhere yet. To do that, we’ll need to use something called “breakpoints”.
A breakpoint is a place in your code where the debugger will stop executing for a second allowing you to inspect what’s going on.
The debugger is now moving backward in our program flow, which can be very useful if you need to know the things that happened before something else happened. But what about moving forward?