Skip to content

Commit 6c203f4

Browse files
author
Sergey Lunev
committed
Update 01 - Simple Breakpoint.php
Shortcut for resuming program in MacOS
1 parent ed21c1f commit 6c203f4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

06 - Debugging/01 - Simple Breakpoint.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,8 +23,8 @@
2323
// 4. Use the context menu to debug the current PHP script. This should launch the debugger and break on our first breakpoint.
2424
// We can see the current statement (that is about to be executed) marked.
2525
// From the tool window below, the $name variable holds 'Maarten'.
26-
// 5. Resume program by pressing the green icon from the tool window or using F9.
26+
// 5. Resume program by pressing the green icon from the tool window or using F9 (Command+Alt+R on Mac OS X).
2727
// 6. From the tool window below, the $name variable holds 'Mikhail'.
2828
// Also a new variable $i is now available, set to zero.
2929
// 7. Resume debugging.
30-
// 8. Every time we go through the loop, the variables that have been modified can be inspected.
30+
// 8. Every time we go through the loop, the variables that have been modified can be inspected.

0 commit comments

Comments
 (0)