From 5e8780671dfc43e7932002dbc55a0d1903389933 Mon Sep 17 00:00:00 2001 From: Luca <55391576+brentspine@users.noreply.github.com> Date: Mon, 24 Jul 2023 22:45:40 +0200 Subject: [PATCH] Fix PHP Constant Naming Link https://namingconvention.org/php/ > Constant Naming does not redirect correctly --- php/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/php/README.md b/php/README.md index 8822f9e..27a7a77 100755 --- a/php/README.md +++ b/php/README.md @@ -1,10 +1,10 @@ # PHP Naming Convention List of covered sections: * [Class Naming](../php/class-naming.md) -* [Constant Naming](../php/constant-name.md) +* [Constant Naming](../php/constant-naming.md) * [Interface Naming](../php/interface-naming.md) * [Method Naming](../php/method-naming.md) * [Variable Naming](../php/variable-naming.md) * [Namespaces Naming](../php/namespaces-naming.md) -Missing something? Please contribute here by reading [this guide](../docs/CONTRIBUTING.md). \ No newline at end of file +Missing something? Please contribute here by reading [this guide](../docs/CONTRIBUTING.md).