From 57b655b965ef711e14d581634eb1b950894a18a9 Mon Sep 17 00:00:00 2001 From: Cameron Date: Mon, 25 May 2020 12:04:45 -0700 Subject: [PATCH] Remove 'variable' - leave it to the developer. --- e107-Coding-Standard.md | 5 ----- 1 file changed, 5 deletions(-) diff --git a/e107-Coding-Standard.md b/e107-Coding-Standard.md index 5b2c626..dc69795 100644 --- a/e107-Coding-Standard.md +++ b/e107-Coding-Standard.md @@ -46,11 +46,6 @@ Use BSD/Allman/Pascal style - opening '{' on a new line. The only exception is f [PSR-1](https://www.php-fig.org/psr/psr-1/) is used with the exception of class/method naming (see below). -## Variables -Use **camelCase** for variables. - - $camelCase = "value"; - ## Constants Use UPPER_CASE_WITH_UNDERSCORES for constants.