| Conditions | 3 |
| Paths | 2 |
| Total Lines | 7 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 4 |
| CRAP Score | 3 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 36 | 75 | public function supports256Color(bool $recheck = false): bool |
|
| 37 | { |
||
| 38 | 75 | if (null !== static::$supports256Color && true !== $recheck) { |
|
| 39 | 74 | return static::$supports256Color; |
|
| 40 | } |
||
| 41 | return |
||
| 42 | 1 | static::$supports256Color = $this->check256ColorSupport(); |
|
| 43 | } |
||
| 55 |