| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 4 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 5 |
| CRAP Score | 1 |
| Changes | 0 | ||
| 1 | <?php |
||
| 34 | 7 | public function __construct( |
|
| 35 | string $location, |
||
| 36 | ?\DateTimeInterface $lastModified, |
||
| 37 | ?string $changeFrequency, |
||
| 38 | ?float $priority |
||
| 39 | ) { |
||
| 40 | 7 | $this->location = $location; |
|
| 41 | 7 | $this->lastModified = $lastModified; |
|
| 42 | 7 | $this->changeFrequency = $changeFrequency; |
|
| 43 | 7 | $this->priority = $priority; |
|
| 44 | 7 | } |
|
| 66 |