Total Complexity | 1 |
Total Lines | 20 |
Duplicated Lines | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
5 | class MixedContentItem extends ApiResource |
||
6 | { |
||
7 | /* |
||
8 | * The name of the element that was detected as mixed content. |
||
9 | */ |
||
10 | public string $elementName; |
||
11 | |||
12 | /* |
||
13 | * The url of the detected mixed content. |
||
14 | */ |
||
15 | public string $mixedContentUrl; |
||
16 | |||
17 | /* |
||
18 | * The url where the mixed content was found. |
||
19 | */ |
||
20 | public string $foundOnUrl; |
||
21 | |||
22 | public function __construct(array $attributes, $ohDear = null) |
||
27 |