8000 Change phpdoc of class ClassLoader add -> addPrefix by Grummfy · Pull Request #3 · symfony/class-loader · GitHub
[go: up one dir, main page]

Skip to content
This repository was archived by the owner on Dec 5, 2022. It is now read-only.

Change phpdoc of class ClassLoader add 8000 -> addPrefix #3

Closed
wants to merge 1 commit into from
Closed
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
Changing phpdoc
  • Loading branch information
Grummfy committed May 20, 2012
commit 40b5082343a0b66363e4eaeae338fb9ab77bfac3
4 changes: 2 additions & 2 deletions ClassLoader.php
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@
* $loader = new ClassLoader();
*
* // register classes with namespaces
* $loader->add('Symfony\Component', __DIR__.'/component');
* $loader->add('Symfony', __DIR__.'/framework');
* $loader->addPrefix('Symfony\Component', __DIR__.'/component');
* $loader->addPrefix('Symfony', __DIR__.'/framework');
*
* // activate the autoloader
* $loader->register();
Expand Down
0