|
| 1 | +<?php declare(strict_types=1); |
| 2 | + |
| 3 | +namespace ForLoopNoScopePollution; |
| 4 | + |
| 5 | + |
| 6 | +use PHPStan\TrinaryLogic; |
| 7 | +use function PHPStan\Testing\assertNativeType; |
| 8 | +use function PHPStan\Testing\assertType; |
| 9 | +use function PHPStan\Testing\assertVariableCertainty; |
| 10 | + |
| 11 | +class ForLoop |
| 12 | +{ |
| 13 | + |
| 14 | + /** @param int $b */ |
| 15 | + public function loopThatIteratesAtLeastOnce(int $a, $b): void |
| 16 | + { |
| 17 | + $j = 0; |
| 18 | + for ($i = 0, $j = 10; $i < 10; $i++, $j--) { |
| 19 | + $a = rand(0, 1); |
| 20 | + $b = rand(0, 1); |
| 21 | + $c = rand(0, 1); |
| 22 | + } |
| 23 | + |
| 24 | + assertType('int<10, max>', $i); |
| 25 | + assertNativeType('int<10, max>', $i); |
| 26 | + assertVariableCertainty(TrinaryLogic::createMaybe(), $i); |
| 27 | + |
| 28 | + assertType('int<min, 10>', $j); |
| 29 | + assertNativeType('int<min, 10>', $j); |
| 30 | + assertVariableCertainty(TrinaryLogic::createYes(), $j); |
| 31 | + |
| 32 | + assertType('int<0, 1>', $a); |
| 33 | + assertNativeType('int', $a); |
| 34 | + assertVariableCertainty(TrinaryLogic::createYes(), $a); |
| 35 | + |
| 36 | + assertType('int<0, 1>', $b); |
| 37 | + assertNativeType('int', $b); |
| 38 | + assertVariableCertainty(TrinaryLogic::createYes(), $b); |
| 39 | + |
| 40 | + assertType('int<0, 1>', $c); |
| 41 | + assertNativeType('int', $c); |
| 42 | + assertVariableCertainty(TrinaryLogic::createYes(), $c); |
| 43 | + } |
| 44 | + |
| 45 | + /** @param int $b */ |
| 46 | + public function loopThatMightIterateAtLeastOnce(int $a, $b): void |
| 47 | + { |
| 48 | + $j = 0; |
| 49 | + for ($i = 0, $j = 10; $i < rand(0, 1); $i++, $j--) { |
| 50 | + $a = rand(0, 1); |
| 51 | + $b = rand(0, 1); |
| 52 | + $c = rand(0, 1); |
| 53 | + } |
| 54 | + |
| 55 | + assertType('int<0, max>', $i); |
| 56 | + assertNativeType('int<0, max>', $i); |
| 57 | + assertVariableCertainty(TrinaryLogic::createMaybe(), $i); |
| 58 | + |
| 59 | + assertType('int<min, 10>', $j); |
| 60 | + assertNativeType('int<min, 10>', $j); |
| 61 | + assertVariableCertainty(TrinaryLogic::createYes(), $j); |
| 62 | + |
| 63 | + assertType('int', $a); |
| 64 | + assertNativeType('int', $a); |
| 65 | + assertVariableCertainty(TrinaryLogic::createYes(), $a); |
| 66 | + |
| 67 | + assertType('int', $b); |
| 68 | + assertNativeType('mixed', $b); |
| 69 | + assertVariableCertainty(TrinaryLogic::createYes(), $b); |
| 70 | + |
| 71 | + assertType('int<0, 1>', $c); |
| 72 | + assertNativeType('int', $c); |
| 73 | + assertVariableCertainty(TrinaryLogic::createMaybe(), $c); |
| 74 | + } |
| 75 | + |
| 76 | + /** @param int $b */ |
| 77 | + public function loopThatNeverIterates(int $a, $b): void |
| 78 | + { |
| 79 | + $j = 0; |
| 80 | + for ($i = 0, $j = 10; $i > 10; $i++, $j--) { |
| 81 | + $a = rand(0, 1); |
| 82 | + $b = rand(0, 1); |
| 83 | + $c = rand(0, 1); |
| 84 | + } |
| 85 | + |
| 86 | + assertType('*ERROR*', $i); |
| 87 | + assertNativeType('*ERROR*', $i); |
| 88 | + assertVariableCertainty(TrinaryLogic::createNo(), $i); |
| 89 | + |
| 90 | + assertType('0', $j); |
| 91 | + assertNativeType('0', $j); |
| 92 | + assertVariableCertainty(TrinaryLogic::createYes(), $j); |
| 93 | + |
| 94 | + assertType('int', $a); |
| 95 | + assertNativeType('int', $a); |
| 96 | + assertVariableCertainty(TrinaryLogic::createYes(), $a); |
| 97 | + |
| 98 | + assertType('int', $b); |
| 99 | + assertNativeType('mixed', $b); |
| 100 | + assertVariableCertainty(TrinaryLogic::createYes(), $b); |
| 101 | + |
| 102 | + assertType('*ERROR*', $c); |
| 103 | + assertNativeType('*ERROR*', $c); |
| 104 | + assertVariableCertainty(TrinaryLogic::createNo(), $c); |
| 105 | + } |
| 106 | + |
| 107 | +} |
0 commit comments