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:----Sa2D+7+i4f0uxquLUlH5NOgKkN/8FuvTIMkANhqv52xPfl6m4dIylYy05G5AXPs4DSKCyLoVm28UXaLZA96Qgv1UtX/myYcbPBYwhSN4XHhdtq00o7/G3coY+uGCpe9SixGdXFGmBSKUjJL3c1vwbzLSILl2L3jTyRsJaAgAzcZsmxEefzrC8aSKwFfGOle29dqAykKQgN+D9325x12GS5O6z5dd8jCRM4ZbsejrTk33ABKzgf6wRgecPIv6qMqDgZ+PzsaQhB5Ee/uhFsEr9tTmliYVHKHje3n5tCNMm6Sh9zkNKzSr0sR43P3j62mKJ6c6PQ3/L3vcoJontF23H+sJDMXtYD6jXz/3gOJRh2rcd/BGivyNc0GoC8IfGLfrO7AJQVq7i9s1Jn+89UsDTPQHRnG2pYmqV20wU/CpMjlAnbkfwtCMTFeNJZbMN5MrgVH3ekxwUMrLcvi6Rn6KB6F3CCzA0wD9rhyhIdWQ4NqPiQUWYFh1Z4/0h1gwmPg0fl7gApHu8TnMCce9awnO8hCUbuMdsLxEUNkWBnRhLdBMzuuM0g+UTK1+vRsSU/FMCsSBz3XomGJFEx1ZMZywPAmGvETFi9MxZ9p47VRV204pTGLOoYsLfoMZJJIVlgLs94XXiHl504maz9fRYrdXfpXyZDBoVt1/Bug87CUxqeQ=----ATTACHMENT:----MjU0MzYyNjA1NTc1MjE5NyAzMDQ1MzY3ODkxMjkyMzUgMzgyNjY1ODQ0OTgyOTQ4OQ==