Fixed the link to PSR-0, because http://www.phptherightway.com/psr0 results in a 404

This commit is contained in:
Jachim Coudenys
2012-07-10 13:40:15 +02:00
parent 384345fc85
commit 94a39127e8

View File

@@ -10,7 +10,7 @@ _Namespaces_ solve this problem. As described in the PHP reference manual, names
It is important for you to namespace your code so that it may be used by other developers without fear of colliding with other libraries.
One recommended way to use namespaces is outlined in [PSR-0](psr0), which aims to provide a standard file, class and namespace convention to allow plug-and-play code.
One recommended way to use namespaces is outlined in [PSR-0][psr0], which aims to provide a standard file, class and namespace convention to allow plug-and-play code.
* [Read about Namespaces][namespaces]
* [Read about PSR-0][psr0]