Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
CRAP | |
100.00% |
1 / 1 |
| LazyLoadedVariable | |
100.00% |
3 / 3 |
|
100.00% |
3 / 3 |
3 | |
100.00% |
1 / 1 |
| __construct | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| getMethod | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| getParameters | |
100.00% |
1 / 1 |
|
100.00% |
1 / 1 |
1 | |||
| 1 | <?php |
| 2 | |
| 3 | namespace MediaWiki\Extension\AbuseFilter\Variables; |
| 4 | |
| 5 | class LazyLoadedVariable { |
| 6 | |
| 7 | public function __construct( |
| 8 | private readonly string $method, |
| 9 | private readonly array $parameters |
| 10 | ) { |
| 11 | } |
| 12 | |
| 13 | public function getMethod(): string { |
| 14 | return $this->method; |
| 15 | } |
| 16 | |
| 17 | public function getParameters(): array { |
| 18 | return $this->parameters; |
| 19 | } |
| 20 | } |