forked from phpstan/phpstan-src
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathbug-12163.php
More file actions
162 lines (146 loc) · 3.08 KB
/
bug-12163.php
File metadata and controls
162 lines (146 loc) · 3.08 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
<?php declare(strict_types = 1);
namespace Bug12163;
use function PHPStan\Testing\assertType;
class Test
{
public function iterateRowColumnIndicesIncrementing(int $rows, int $columns): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
$rowIndex = 0;
$columnIndex = 0;
for ($i = 0; $i < $size; $i++) {
assertType('int<0, max>', $rowIndex);
assertType('int<0, max>', $columnIndex);
if ($columnIndex < $columns) {
$columnIndex++;
} else {
$columnIndex = 0;
$rowIndex++;
}
}
}
}
class Test2
{
public function iterateRowColumnIndicesDecrementing(int $rows, int $columns): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
$rowIndex = 0;
$columnIndex = 0;
for ($i = 0; $i < $size; $i++) {
assertType('0', $rowIndex); // `0`, because the IF in line 41 is always TRUE
assertType('int<min, 0>', $columnIndex);
if ($columnIndex < $columns) {
$columnIndex--;
} else {
$columnIndex = 0;
$rowIndex++;
}
}
}
}
class Test3
{
/**
* @param int<0, 30> $columnIndex
*/
public function iterateRowColumnIndicesDecrementing(int $rows, int $columns, int $columnIndex): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
for ($i = 0; $i < $size; $i++) {
assertType('int<min, 30>', $columnIndex);
if ($columnIndex < 3) {
$columnIndex--;
} else {
$columnIndex = 0;
}
assertType('int<min, 1>', $columnIndex);
}
}
}
class Test4
{
/**
* @param int<0, 10> $columnIndex
*/
public function integerRangeBothDirections(int $rows, int $columns, int $columnIndex): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
for ($i = 0; $i < $size; $i++) {
assertType('int<0, max>', $columnIndex);
if ($columnIndex < $columns) {
$columnIndex++;
} else {
$columnIndex--;
}
}
}
}
class Test5
{
/**
* @param int<0, 10> $columnIndex
*/
public function integerRangeOnlyGreater(int $rows, int $columns, int $columnIndex): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
for ($i = 0; $i < $size; $i++) {
assertType('int<0, max>', $columnIndex);
if ($columnIndex < $columns) {
$columnIndex++;
} else {
$columnIndex = 5;
}
}
}
}
class Test6
{
/**
* @param int<5, 10> $value
*/
public function integerRangeGrowsBothDirections(int $value): void
{
for ($i = 0; $i < 10; $i++) {
assertType('int<min, 10>', $value);
if ($value > 0) {
$value = $value - 2;
} else {
$value = $value + 3;
}
}
}
}
class Bug12163
{
/**
* @param non-negative-int $value
* @return void
*/
private function checkNonNegative(int $value): void
{
sleep(1);
}
public function iterateRowColumnIndices(int $rows, int $columns): void
{
if ($rows < 1 || $columns < 1) return;
$size = $rows * $columns;
$rowIndex = 0;
$columnIndex = 0;
for ($i = 0; $i < $size; $i++) {
$this->checkNonNegative($rowIndex);
$this->checkNonNegative($columnIndex);
if ($columnIndex < $columns) {
$columnIndex++;
} else {
$columnIndex = 0;
$rowIndex++;
}
}
}
}