Skip to content
Open
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
8 changes: 4 additions & 4 deletions src/iut/2-1.md
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ Running the `tree` command should display the following:
│   └── Lemonade.php
├── Wine
│   ├── Bordeaux.php
│   └── Chinon.php
│   └── Chateaugay.php
├── autoload.php
├── autoload_cache.php
├── autoload_namespace.php
Expand Down Expand Up @@ -125,7 +125,7 @@ $autoload_map = [
'Soda\Lemonade' => 'Soda/Lemonade.php',
'Soda\Juice\Orange' => 'Soda/Juice/Orange.php',
'Wine\Bordeaux' => 'Wine/Bordeaux.php',
'Wine\Chinon' => 'Wine/Chinon.php',
'Wine\Chateaugay' => 'Wine/Chateaugay.php',
];
```

Expand All @@ -141,7 +141,7 @@ You should see:
Soda\Lemonade
Soda\Juice\Orange
Wine\Bordeaux
Wine\Chinon
Wine\Chateaugay



Expand All @@ -162,7 +162,7 @@ You should see:
Soda\Lemonade
Soda\Juice\Orange
Wine\Bordeaux
Wine\Chinon
Wine\Chateaugay


Step 3: Load SnakeCase'd Class Names
Expand Down