Skip to content

Correction, Chateaugay is far away better than Chinon #1

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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