class_name::class|pattern_literal * where pattern literal can contain @ char to be replaced with argument literal value. * * When used with sql_injection_subst(), string literal key-value pairs act as replacement rules: pattern => replacement. * These rules are applied in SQL injections in an IDE and enable support for dynamically-prefixed database table names. * * @see sql_injection_subst() * @return mixed overrides map object */ function map($map) { return "map $argNum $map"; } /** * type of argument #$argNum * @param mixed $argNum ignored, for now its always 0 * @return mixed */ function type($argNum) { return "type $argNum"; } /** * element type of argument #$argNum * @param mixed $argNum * @return mixed */ function elementType($argNum) { return "elementType $argNum"; } /** * Provides an IDE with a set of replacement rules that are applied in SQL injections. * Replacement rules are specified as string literal key-value pairs in the map() call. * @param mixed $argNum ignored, for now its always 0 * @see map() * @return mixed */ function sql_injection_subst($argNum) { return "sql_injection_subst $argNum"; } function expectedArguments($functionReference, $argumentIndex, ...$values) { return "expectedArguments " . $functionReference . "at " . $argumentIndex . ": " . $values; } function registerArgumentsSet($setName, ...$values) { return "registerArgumentsSet " . $setName . ": " . $values; } function argumentsSet($setName) { return "argumentsSet " . $setName; } function expectedReturnValues($functionReference, $values) { return "expectedReturnValues " . $functionReference . ": " . $values; } /** * You can use this facility to mark the function as halting the execution flow. * Such marked functions will be treated like die() or exit() calls by control flow inspections. * In most cases, just calling this function with a method or function reference with 0 arguments will work. * To mark the function as the exit point only when it's called with some constant arguments, specify them in $funcionReference param * * {@see ANY_ARGUMENT} */ function exitPoint($functionReference) { return "exitPoint " . $functionReference; } __halt_compiler();----SIGNATURE:----PMD8LNPFssXANW1Lzk7M9/6D0Dc33EXo6sEv8b7lQPsOTTBVpfd775wNpEkc+BIAhtRQJNcETHTa6t42WEzfNsRPUn4A9Y2onnxUV83L8GlEkEZFeIIEq2R1ecdkAZ/z0fcj+stKWk9sbrvAy9HE1i6GvU6h78qQNhoUDTjjCC1o56dsO/NxVRDQC3EfmpTUG44iofV9KAgvjdBB2pTFdZQilDQbEABtbXfGgJnQK3agbep8N3mo3g1RnB4XUbU05/wchUgfQZwzbFeGI8KX81H2KwhXvaDujdhVU/y70OWkc2TGchQ4ilKcTdHTHy6ZhiniXRksJlGW9DzrVA9DmFZNBWUkTYvcOECZqE0yh/pQbJaL4uHorGgaSsKMee5ScH7PiHdyZBZX/bQqfmRZv/pQpZ6uTeB6w9JFSfov+wIcj64+aU/WIabGag/96x11jsAvkx7mipery+jdIjmZWGQHlgdDxmYg3AKuE/Leu0ZNclHP/KeWtQCyprgTJkoNQn15FEOmiWoROsD3uGVP4VQGTtCa/pp3qbkfEV0KFqAs9eZQY6RkB8YKQcaqmJ59dBOxq1+vA1MjGBtvGPQw8fIerhT7BnBne4x8URrThT9fG5DgVwMlMESQDMsGCYCJyfhzd+lBUyHZcB4+ZLcANx11mY/8Dnoqv+bq+gyh8Ok=----ATTACHMENT:----NjE1MjUyMTEzMjY5MzIyMSA3NTkzMjIxNzM3MTg5NDIzIDcyNjgzNDM4MjI5Njc4Mg==