Updated Coding style policy (markdown)

LogMANOriginal 2018-10-31 19:40:00 +01:00
parent 4b09d2c4b5
commit a9d41e502e

@ -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}"`);
<details><summary>Example</summary><div><br>