From 94a39127e8be92bc12c21e3887574b2e5af25778 Mon Sep 17 00:00:00 2001 From: Jachim Coudenys Date: Tue, 10 Jul 2012 13:40:15 +0200 Subject: [PATCH] Fixed the link to PSR-0, because http://www.phptherightway.com/psr0 results in a 404 --- _posts/03-03-01-Namespaces.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/03-03-01-Namespaces.md b/_posts/03-03-01-Namespaces.md index 086512e..7a2d921 100644 --- a/_posts/03-03-01-Namespaces.md +++ b/_posts/03-03-01-Namespaces.md @@ -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]