,error_levels?:string[]}> */ public function providerValidCodeParse() { return [ 'twoVarLogicSimple' => [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' "UK"]; } $arr = []; foreach ([1, 2, 3] as $i) { $row = fetchRow(); if (!isset($arr[$row["c"]])) { $arr[$row["c"]] = 0; } $arr[$row["c"]] = 1; }', 'assertions' => [], 'error_levels' => ['MixedArrayOffset'], ], 'moreConvolutedNestedArrayCreation' => [ ' "UK"]; } $arr = []; foreach ([1, 2, 3] as $i) { $row = fetchRow(); if (!isset($arr[$row["c"]]["foo"])) { $arr[$row["c"]]["foo"] = 0; } $arr[$row["c"]]["foo"] = 1; }', 'assertions' => [], 'error_levels' => ['MixedArrayOffset'], ], 'noParadoxInLoop' => [ ' 0; if (!$condition) { foreach ([1, 2] as $value) { if ($condition) { } $condition = true; } } }', ], 'noParadoxInListAssignment' => [ ' [ ' 0; } function leftover(): bool { $res = get_bool(); if ($res === false) { return true; } $res = get_bool(); if ($res === false) { return false; } return true; }', ], 'noParadoxAfterArrayAppending' => [ ' 0) { $errors[] = "unlucky"; } if ($errors) { return false; } return $errors; }', ], 'noParadoxInCatch' => [ ' 0) { return ["key" => "value"]; } if (rand() % 3 > 0) { throw new Exception("An exception occurred"); } return null; } function try_catch_check(): array { $arr = null; try { $arr = maybe_returns_array(); if (!$arr) { return []; } } catch (Exception $e) { if (!$arr) { return []; } } return $arr; }', ], 'lotsaTruthyStatements' => [ 'a !== null) == true) { return $obj->a; // definitely not null } elseif (!is_null($obj->b) == true) { return $obj->b; } else { throw new \InvalidArgumentException("$obj->a or $obj->b must be set"); } }', ], 'lotsaFalsyStatements' => [ 'a === null) == false) { return $obj->a; // definitely not null } elseif (is_null($obj->b) == false) { return $obj->b; } else { throw new \InvalidArgumentException("$obj->a or $obj->b must be set"); } }', ], 'ifGetClass' => [ 'foo(); } }', ], 'ifNotEqualsGetClass' => [ 'foo(); } }', ], 'nestedCheckWithSingleVarPerLevel' => [ ' [ ' [ ' [ 'foo === null) { $a->foo = "hello"; exit; } if ($a->foo === "somestring") {}', ], 'propertyFetchAfterNotNullCheckInElseif' => [ ' 5) { } elseif (($a = rand(0, 1) ? new A : null) && $a->foo) {}', ], 'noParadoxForGetopt' => [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ 'bar(); } } }', ], 'noParadoxAfterConditionalAssignment' => [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' [ ' 2]; echo $array["_a"];', ], 'noMemoryIssueWithLongConditional' => [ '= 0x5be && $c <= 0x10b7f)) { return "LTR"; } if ($c <= 0x85e) { if ($c === 0x5be || $c === 0x5c0 || $c === 0x5c3 || $c === 0x5c6 || ($c >= 0x5d0 && $c <= 0x5ea) || ($c >= 0x5f0 && $c <= 0x5f4) || $c === 0x608 || ($c >= 0x712 && $c <= 0x72f) || ($c >= 0x74d && $c <= 0x7a5) || $c === 0x7b1 || ($c >= 0x7c0 && $c <= 0x7ea) || ($c >= 0x7f4 && $c <= 0x7f5) || $c === 0x7fa || ($c >= 0x800 && $c <= 0x815) || $c === 0x81a || $c === 0x824 || $c === 0x828 || ($c >= 0x830 && $c <= 0x83e) || ($c >= 0x840 && $c <= 0x858) || $c === 0x85e ) { return "RTL"; } } elseif ($c === 0x200f) { return "RTL"; } elseif ($c >= 0xfb1d) { if ($c === 0xfb1d || ($c >= 0xfb1f && $c <= 0xfb28) || ($c >= 0xfb2a && $c <= 0xfb36) || ($c >= 0xfb38 && $c <= 0xfb3c) || $c === 0xfb3e || ($c >= 0x10a10 && $c <= 0x10a13) || ($c >= 0x10a15 && $c <= 0x10a17) || ($c >= 0x10a19 && $c <= 0x10a33) || ($c >= 0x10a40 && $c <= 0x10a47) || ($c >= 0x10a50 && $c <= 0x10a58) || ($c >= 0x10a60 && $c <= 0x10a7f) || ($c >= 0x10b00 && $c <= 0x10b35) || ($c >= 0x10b40 && $c <= 0x10b55) || ($c >= 0x10b58 && $c <= 0x10b72) || ($c >= 0x10b78 && $c <= 0x10b7f) ) { return "RTL"; } } return "LTR"; }', [], 'error_levels' => ['MixedInferredReturnType'], ], 'grandParentInstanceofConfusion' => [ ' [ ' [ ' [ 'b && $x->a) { } elseif ($x->c) { $a = true; } if ($x->c) {} if ($a) {} }' ], 'twoVarChangeInElseOnly' => [ 'takesA($to); } else { if (!$to) { $to = new A(); $to->takesA($from); } } $from->foo(); $to->foo(); }' ], 'twoVarChangeInElseif' => [ 'takesA($to); } elseif (!$to) { $to = new A(); $to->takesA($from); } $from->foo(); $to->foo(); }', ], 'testSimplishThing' => [ ' */ public function providerInvalidCodeParse() { return [ 'threeVarLogicWithChange' => [ ' 'PossiblyNullArgument', ], 'threeVarLogicWithException' => [ ' 'PossiblyNullArgument', ], 'invertedTwoVarLogicNotNestedWithVarChange' => [ ' 'NullableReturnStatement', ], 'invertedTwoVarLogicNotNestedWithElseif' => [ ' 'NullableReturnStatement', ], 'threeVarLogicWithElseifAndAnd' => [ ' 'ParadoxicalCondition', ], 'twoVarLogicNotNestedWithElseifIncorrectlyReinforcedInIf' => [ ' 'RedundantCondition', ], 'repeatedIfStatements' => [ ' 'TypeDoesNotContainType', ], 'repeatedConditionals' => [ ' 'TypeDoesNotContainType', ], 'repeatedAndConditional' => [ ' 'ParadoxicalCondition', ], 'andConditionalAfterOrConditional' => [ ' 'TypeDoesNotContainType', ], 'repeatedVarFromOrConditional' => [ ' 'TypeDoesNotContainType', ], 'typeDoesntEqualType' => [ ' 'RedundantCondition', ], 'stringConcatenationTrackedInvalid' => [ ' 2]; echo $array["other"];', 'error_message' => 'InvalidArrayOffset', ], 'redundantTwoVarInElseif' => [ ' 'RedundantCondition', ], ]; } }