Skip to content

Commit 07679b7

Browse files
committed
Merge pull request #16 from tfrommen/master
Super awesome contribution. Thanks both!
2 parents 517d219 + 19c31b8 commit 07679b7

File tree

132 files changed

+303
-302
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

132 files changed

+303
-302
lines changed
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,10 @@
11
Project Tool Window
22

3-
Shows all files in project.
3+
Show all files in project.
44

55
Alt+1 (Windows/Linux)
66
Command+1 (Mac OS X)
77

88
1. Open the Project Tool Window.
9-
2. Using the arrow keys, navigate to \01 - Navigation\01 - Navigate to something you know\Code\license.txt
9+
2. Using the arrow keys, navigate to \01 - Navigation\01 - Navigate to something you know\Code\license.txt.
1010
3. Start typing "Bar". Navigate to the next exercise.

01 - Navigation/01 - Navigate to something you know/1.3. Navigate to class.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@ Navigate to a class by (partial) class name.
55
Ctrl+N (Windows/Linux)
66
Command+O (Mac OS X)
77

8-
1. Navigate to class
8+
1. Navigate to class.
99
Navigate to the Customer class. Open the file by hitting enter.
1010

11-
2. Use CamelHumps to navigate
12-
Navigate to the CustomerRepository class using CamelHumps (type "CR" or "CusR")
11+
2. Use CamelHumps to navigate.
12+
Navigate to the CustomerRepository class using CamelHumps (type "CR" or "CusR").
1313

14-
3. Use middle matching to navigate
15-
Navigate to the DocumentRepository class by searching for "Repo"
14+
3. Use middle matching to navigate.
15+
Navigate to the DocumentRepository class by searching for "Repo".
1616

17-
4. Use wildcards
18-
Navigate to the SettingsRepository by searching for "S*Repo"
17+
4. Use wildcards.
18+
Navigate to the SettingsRepository by searching for "S*Repo".
1919

2020
5. Filter to only check PHP files by clicking the filter icon.
2121

22-
6. Include non-project classes
23-
Check the "Include non-project classes" checkbox and navigate to ArrayObject (PHP SPL library)
22+
6. Include non-project classes.
23+
Check the "Include non-project classes" checkbox and navigate to ArrayObject (PHP SPL library).

01 - Navigation/01 - Navigate to something you know/1.4. Navigate to file.txt

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,16 @@ Navigate to a file by (partial) file name.
55
Ctrl+Shift+N (Windows/Linux)
66
Shift+Command+O (Mac OS X)
77

8-
1. Navigate to file
9-
Navigate to the customer.php file. Open the file by hitting enter.
8+
1. Navigate to file.
9+
Navigate to the Customer.php file. Open the file by hitting enter.
1010

11-
2. Use CamelHumps to navigate
12-
Navigate to the CustomerRepository.php file using CamelHumps (type "CR" or "CusR")
11+
2. Use CamelHumps to navigate.
12+
Navigate to the CustomerRepository.php file using CamelHumps (type "CR" or "CusR").
1313

14-
3. Use middle matching to navigate
15-
Navigate to the DocumentRepository.php file by searching for "Repo"
14+
3. Use middle matching to navigate.
15+
Navigate to the DocumentRepository.php file by searching for "Repo".
1616

17-
4. Use wildcards
18-
Navigate to the license.txt file by searching for "l*.txt"
17+
4. Use wildcards.
18+
Navigate to the license.txt file by searching for "l*.txt".
1919

20-
5. Filter to only check JavaScript files by clicking the filter icon. Search for Customer.js.
20+
5. Filter to only check JavaScript files by clicking the filter icon. Search for Customer.js.

01 - Navigation/01 - Navigate to something you know/1.5. Navigate to symbol.txt

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,13 +5,13 @@ Navigate to a symbol by (partial) symbol name.
55
Ctrl+Alt+Shift+N (Windows/Linux)
66
Alt+Command+O (Mac OS X)
77

8-
1. Navigate to symbol
8+
1. Navigate to symbol.
99
Navigate to the $_name protected variable in Customer.php.
1010

11-
2. Use CamelHumps to navigate
12-
Navigate to the getName() function using CamelHumps (type "gN" or "getN")
11+
2. Use CamelHumps to navigate.
12+
Navigate to the getName() function using CamelHumps (type "gN" or "getN").
1313

1414
3. Note that middle matching and wildcards also work when searching symbols.
1515
Example searches: "ebra" of "celebr*day" for the celebrateBirthday() function.
1616

17-
4. Filter to only search in JavaScript files and find the celebrateBirthday() function in the Customer.js file.
17+
4. Filter to only search in JavaScript files and find the celebrateBirthday() function in the Customer.js file.

01 - Navigation/01 - Navigate to something you know/1.6. Search everywhere.txt

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ Double shift (Windows/Linux/Mac OS X)
88

99
2. Navigate to the $_name protected variable in Customer.php.
1010

11-
3. Use CamelHumps to navigate
12-
Navigate to the CustomerRepository class using CamelHumps (type "CR" or "CusR")
11+
3. Use CamelHumps to navigate.
12+
Navigate to the CustomerRepository class using CamelHumps (type "CR" or "CusR").
1313

14-
4. Use middle matching to navigate
15-
Navigate to the DocumentRepository.php file by searching for "Repo"
14+
4. Use middle matching to navigate.
15+
Navigate to the DocumentRepository.php file by searching for "Repo".
1616

17-
5. Find the "About" action and invoke it.
17+
5. Find the "About" action and invoke it.

01 - Navigation/01 - Navigate to something you know/Code/JetBrains/Customers/Customer.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ var Customer = function() {
44
this.celebrateBirthday = function() {
55
console.log('Yay!');
66
}
7-
};
7+
};

01 - Navigation/01 - Navigate to something you know/Code/JetBrains/Customers/Customer.php

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@ class Customer {
1010
protected $_age;
1111

1212
/**
13-
* @param $name string
14-
* @param $age int
13+
* @param string $name
14+
* @param int $age
1515
*/
1616
function __construct($name, $age)
1717
{
@@ -57,4 +57,4 @@ public function getName()
5757
public function celebrateBirthday() {
5858
echo 'Yay!';
5959
}
60-
}
60+
}

01 - Navigation/01 - Navigate to something you know/Code/JetBrains/Customers/Repositories/CustomerRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
class CustomerRepository extends RepositoryBase {
66

7-
}
7+
}

01 - Navigation/01 - Navigate to something you know/Code/JetBrains/Customers/Repositories/DocumentRepository.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
class DocumentRepository extends RepositoryBase {
66

7-
}
7+
}

01 - Navigation/01 - Navigate to something you know/Code/JetBrains/Customers/Repositories/RepositoryBase.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@
44

55
abstract class RepositoryBase {
66

7-
}
7+
}

0 commit comments

Comments
 (0)