Skip to content

Commit d1c95ce

Browse files
committed
Added PSR-4 ClassLoader to list
1 parent 741ad05 commit d1c95ce

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

components/class_loader/introduction.rst

+4-1
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,14 @@ Usage
1212

1313
Whenever you reference a class that has not been required or included yet,
1414
PHP uses the `autoloading mechanism`_ to delegate the loading of a file defining
15-
the class. Symfony2 provides two autoloaders, which are able to load your classes:
15+
the class. Symfony2 provides three autoloaders, which are able to load your classes:
1616

1717
* :doc:`/components/class_loader/class_loader`: loads classes that follow
1818
the `PSR-0` class naming standard;
1919

20+
* :doc:`/components/class_loader/psr4_class_loader`: loads classes that follow
21+
the `PSR-4` class naming standard;
22+
2023
* :doc:`/components/class_loader/map_class_loader`: loads classes using
2124
a static map from class name to file path.
2225

0 commit comments

Comments
 (0)