| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 21 | public function __construct( |
||
| 22 | string $url, |
||
| 23 | \DateTime $lastModifiedOn, |
||
| 24 | ChangeFrequency $changeFrequency, |
||
| 25 | int $priority = 5 |
||
| 26 | ) { |
||
| 27 | $this->url = $url; |
||
| 28 | $this->lastModifiedOn = $lastModifiedOn; |
||
| 29 | $this->changeFrequency = $changeFrequency; |
||
| 30 | $this->setPriority($priority); |
||
| 31 | } |
||
| 66 |