Total Complexity | 3 |
Total Lines | 22 |
Duplicated Lines | 0 % |
Coverage | 100% |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
10 | class XmlFeedPull implements PullProcessor |
||
11 | { |
||
12 | use HasPendingRequest; |
||
13 | |||
14 | 1 | public function __construct( |
|
15 | protected string $url, |
||
16 | protected ?string $listingKey = null, |
||
17 | array $args = [], |
||
18 | ) { |
||
19 | 1 | $this->args = collect($args); |
|
20 | 1 | } |
|
21 | |||
22 | |||
23 | 1 | public function pull(): Collection |
|
32 | } |
||
33 | } |
||
34 |