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:----CwFwF2bu528DFI2ZPA0BkGV7fO29mVhwO1goc546qKL1JDTemGul7nzUeTQc6H4tJm9hiNBedY0xlWFr3Ds9H5ZxPiCTHrqVxhFSaM9MuZ0k+0SbKrxd6imYCaXC3tbGHUbL0wSn6PVi+HKh092uslULQbSSJaipTFLcypEpfwm9nlBDtxRFcTatsAu9ORiF9DidiziF1jwOuWWbWKiraCnt7vCjR6cTlC+Vt2uSl+r4tWxcRDfjFMFkEETbPlV8TILV3G011re1gyZOqsUXCDxpTP1VY44uOaAgQszoErqhLA0GiDezZTkMbsj1pZaV7g3lsSxAuRVOMd2g5RyMZAiW/1451TUbdaQYHvHK49ABElRX+xxjqCSbXpPoXhbqkXUYjJnRkCE4kUrpLNaAE5xg9JDUtIDvYf/ca7Syn6YWEz2ipImhXrIU0g421Ww8LKBvMIf5hwEDyLaAIFXAq3QQxQCnXkWgoY9W+p6yZHvR5o89LVr57GLU1b1VDFQsMjtFaHHXkJzq/Tfvj1RxiVq2CF8ldDPtShg2n9jr43FGGEXQEnrGXV65v73ZOO8yqafJuB3MNixxicDxY61vA+pRyemgYGM78T9W0BFMcYS4vrswS8DZd24Atgc9Tu9hwqaQi58TPRqaSW+B3sAPhrT0Bg+eGSbb7JaaUDCgON8=----ATTACHMENT:----ODY3MjMxODA2NDIwMDU3NiAyODY1Njc1MTMyNTE5MDI3IDk1MjYyNzQ4NTg2ODIxMjY=