| Conditions | 1 |
| Paths | 1 |
| Total Lines | 13 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 69 | public function __construct( |
||
| 70 | array $values = [], |
||
| 71 | string $rel = '', |
||
| 72 | string $href = '', |
||
| 73 | string $method = 'get', |
||
| 74 | string $title = '', |
||
| 75 | string $crawl = '', |
||
| 76 | ) { |
||
| 77 | $this->rel = $values['rel'] ?? $rel; |
||
| 78 | $this->href = $values['href'] ?? $href; |
||
| 79 | $this->method = $values['method'] ?? $method; |
||
| 80 | $this->title = $values['title'] ?? $title; |
||
| 81 | $this->crawl = $values['crawl'] ?? $crawl; |
||
| 82 | } |
||
| 84 |