Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
CRAP | |
0.00% |
0 / 1 |
| Banners | |
0.00% |
0 / 3 |
|
0.00% |
0 / 3 |
12 | |
0.00% |
0 / 1 |
| __construct | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| get_low | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| get_high | |
0.00% |
0 / 1 |
|
0.00% |
0 / 1 |
2 | |||
| 1 | <?php |
| 2 | |
| 3 | |
| 4 | namespace BrianHenryIE\WP_Plugin_Updater\Integrations\SLSWC\Model; |
| 5 | |
| 6 | class Banners { |
| 7 | public function __construct( |
| 8 | protected string $low, |
| 9 | protected string $high |
| 10 | ) { |
| 11 | } |
| 12 | |
| 13 | public function get_low(): string { |
| 14 | return $this->low; |
| 15 | } |
| 16 | |
| 17 | public function get_high(): string { |
| 18 | return $this->high; |
| 19 | } |
| 20 | } |