Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
$name = 'Hadi';
$age = 53;

// 1. Ctrl+Click on the Customer symbol
// 1. Ctrl+Click (or Command+Click on Mac) on the Customer symbol
// 2. Use the keyboard shortcut
// 3. Go to Declaration for the $age variable passed into the below constructor
$person = new Customer($name, $age);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* Navigates back to where code was last edited.
*
* Ctrl+Shift+Backspace (Windows/Linux)
* Shift+Command+Backspace (Mac OS X)
* Shift+Command+Delete (Mac OS X)
*/

namespace Navigation3\JetBrains;
Expand All @@ -27,4 +27,4 @@ public function step1() {
public function step2() {
// 4. Navigate back to where we last edited using the keyboard shortcut.
}
}
}