| Conditions | 4 |
| Paths | 3 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 4.074 |
| Changes | 0 | ||
| 1 | <?php |
||
| 19 | 2 | public function pröva_tipsrad(string $tipsrad_012): bool { |
|
| 20 | 2 | [$x, $y] = $this->graf->tipsgrafskoordinater($tipsrad_012); |
|
| 21 | 2 | foreach ($this->rektanglar as [$x1, $y1, $x2, $y2]) { |
|
| 22 | 2 | if (in($x, $x1, $x2) && in($y, $y1, $y2)) { |
|
| 23 | 2 | return true; |
|
| 24 | } |
||
| 25 | } |
||
| 26 | |||
| 27 | return $this->tick(); |
||
| 28 | } |
||
| 45 |