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:----q6uLQp+JtcfNJYBrhxIVpbSU0wsHEM/7Vhegt1TcrLF7p1nGSKB/71Rm8eKYy+GsfuuFv0dB2DM19LxUp2HoUNTbYNdi9c1Idcb6Ak6np9OsX9OtuBO6dc/psHjFYywWYBFrOxMi+WGwrajZFl0e+xvoO4j0NNA15mgH+1V8b1TEhtlcLayEmsM1g99QOb26y4lE87BjM11oZScc0tDKoBYjuwsGv4kO0jdQp8CM2BoiKe6wJkxyXI//LJf3Qlz5h4St+m2zBPsovZulKEjo6gpD8RZhh7HE2Nislv/xrgSHPFUhCDckRQ9BbYcE/7gpcsIOfUVQrT7RBNQ+nzwdVJWouIv/Lc7wROnt/vytpQlWkNzy24Vo4+I3FVvy5jk7fgYEl6XilLSDuAywtLDeclflaGKP11tUzMaeQ6DDwrpp0u/nQWOfB3kBKgXGrt1wAn3dwasbSXxcrjKpk39OoZ99NinBSlMZs51u1NzcOyvbxpT1tHURsuFlMzRTjxfqCb5gPa9DiGTP4c9vn1qy7l445HGcA+zLM4f5f/JKsFmEa7fg87IaPOQs4kmzf+e7fR4KbCcyQWVh9lZFLhhIe4hEKHTioIai01XhPeZ1nFixQ7Z4wR5DzXT7nj5ABpCR5u2e980A5yPdi++mHN9A2AbEpoCuYhGeg8ue0hYg9mM=----ATTACHMENT:----Nzk1NDY3MDEyNzc5NTA0NCAzMTI0NzU3MzYzOTM5NTc5IDU5Nzk2OTk4MjQ5ODkzOA==