*/ public function providerInvalidCodeParse(): iterable { return [ 'varDump' => [ ' 'ForbiddenCode', ], 'varDumpCased' => [ ' 'ForbiddenCode', ], 'execTicks' => [ ' 'ForbiddenCode', ], 'exec' => [ ' 'ForbiddenCode', ], 'execCased' => [ ' 'ForbiddenCode', ], ]; } /** * @return iterable,error_levels?:string[]}> */ public function providerValidCodeParse(): iterable { return [ 'execWithSuppression' => [ '&1", $output, $returnValue); if ($returnValue === 0) { echo "success"; }', ], 'execWithoutSuppression' => [ '&1", $output, $returnValue); if ($returnValue === 0) { echo "success"; }', ], ]; } }