From 1346dc247e829ebc4a0b92b56f277854f98508a2 Mon Sep 17 00:00:00 2001 From: Dennis Eichhorn Date: Wed, 28 Jun 2023 20:34:33 +0000 Subject: [PATCH] minor fixes --- standards/php.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/standards/php.md b/standards/php.md index 425edff..a1b357a 100755 --- a/standards/php.md +++ b/standards/php.md @@ -14,6 +14,8 @@ This means each class is in a file by itself, and is in a namespace of at least Class names MUST be declared in StudlyCaps. +Nativ PHP functions must use global namespacing e.g. `\count(...)`. + ### Return type hint The return type hint must have a whitespace after the closing braces and after the colon. The return type must be on the same line as the closing brace.