| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 28 | public function __construct( |
||
| 29 | string $url, |
||
| 30 | \DateTime $lastModifiedOn, |
||
| 31 | ChangeFrequency $changeFrequency, |
||
| 32 | int $priority |
||
| 33 | ) { |
||
| 34 | $this->url = $url; |
||
| 35 | $this->lastModifiedOn = $lastModifiedOn; |
||
| 36 | $this->changeFrequency = $changeFrequency; |
||
| 37 | $this->setPriority($priority); |
||
| 38 | } |
||
| 73 |