From 2245a6b0a53fe41eebd4402ac09cc903e9d32013 Mon Sep 17 00:00:00 2001 From: Rodrigo Primo Date: Tue, 19 Dec 2023 16:01:03 -0300 Subject: [PATCH] Generic/PHP/Syntax: add XML documentation --- .../Generic/Docs/PHP/SyntaxStandard.xml | 21 +++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 src/Standards/Generic/Docs/PHP/SyntaxStandard.xml diff --git a/src/Standards/Generic/Docs/PHP/SyntaxStandard.xml b/src/Standards/Generic/Docs/PHP/SyntaxStandard.xml new file mode 100644 index 0000000000..1c2457df0a --- /dev/null +++ b/src/Standards/Generic/Docs/PHP/SyntaxStandard.xml @@ -0,0 +1,21 @@ + + + + + + + echo "Hello!"; +$array = [1, 2, 3]; + ]]> + + + // Missing semicolon. +$array = [1, 2, 3; // Missing closing bracket. + ]]> + + +