From dc83991cf59fc6d0dd05f6fd1bba37976a9fa5de Mon Sep 17 00:00:00 2001 From: LogMANOriginal Date: Mon, 5 Nov 2018 11:48:32 +0100 Subject: [PATCH] Updated const PARAMETERS (markdown) --- const-PARAMETERS.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/const-PARAMETERS.md b/const-PARAMETERS.md index 4fe5a81..115c9f3 100644 --- a/const-PARAMETERS.md +++ b/const-PARAMETERS.md @@ -32,6 +32,8 @@ A context is defined as a associative array of parameters. The name of a context
Show example
+**Warning**: This example won't work in real applications because both categories have the same set of parameters (`array()`) + ```PHP const PARAMETERS = array( 'My Context 1' => array(), @@ -45,9 +47,9 @@ const PARAMETERS = array(

-**Warning**: Multiple contexts with the same parameters are not allowed! +**Warning**: Multiple contexts with the same set of parameters are not allowed! -**Notice**: The name of a context can be left empty if only one context is needed! +_Notice_: The name of a context can be left empty if only one context is needed!
Show example