From 1f8dd851732a99d25cccb3638fe5663d4f7b14c3 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Tue, 31 Jul 2018 10:59:46 +0200 Subject: [PATCH] Removed string, they are part of general --- standards/php.md | 4 ---- 1 file changed, 4 deletions(-) diff --git a/standards/php.md b/standards/php.md index b862ca6..7cf4a0c 100644 --- a/standards/php.md +++ b/standards/php.md @@ -36,10 +36,6 @@ Php code embedded into template files SHOULD use the alternative syntax for cont ``` -## Strings - -Strings must use single quotes `'` instead of `"` unless double quotes are required. - ## Echo when echoing multiple components, don't concat them but use `,`.