1 | <?php |
||
7 | class MixedContent |
||
8 | { |
||
9 | /** string */ |
||
10 | public $elementName = ''; |
||
11 | |||
12 | /** @var\Spatie\Crawler\Url */ |
||
13 | public $mixedContentUrl = null; |
||
14 | |||
15 | /** @var\Spatie\Crawler\Url */ |
||
16 | public $foundOnUrl = null; |
||
17 | |||
18 | public function __construct(string $elementName, UriInterface $mixedContentUrl, UriInterface $foundOnUrl) |
||
34 | |||
35 | public function toArray(): array |
||
43 | } |
||
44 |