From a9d41e502e2d2d706f72942694349ac034311442 Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Wed, 31 Oct 2018 19:40:00 +0100 Subject: [PATCH] Updated Coding style policy (markdown) --- Coding-style-policy.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Coding-style-policy.md b/Coding-style-policy.md index df486cd..2a31a72 100644 --- a/Coding-style-policy.md +++ b/Coding-style-policy.md @@ -232,7 +232,7 @@ _Reference_: [`Generic.Strings.UnnecessaryStringConcat`](https://github.com/squi # Whenever possible use single quote strings -PHP supports both single quote strings and double quote strings. For pure text you must use single quote strings for consistency. Double quote strings are only allowed for special characters (i.e. `"\n"`) or inlined variables (i.e. "My name is {$name}"); +PHP supports both single quote strings and double quote strings. For pure text you must use single quote strings for consistency. Double quote strings are only allowed for special characters (i.e. `"\n"`) or inlined variables (i.e. `"My name is {$name}"`);
Example