| Conditions | 1 |
| Paths | 1 |
| Total Lines | 10 |
| Code Lines | 8 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 78 | public function __construct(AttributeDecoratorInterface $decorator, Iterable $data, array $attributes, int $offset, int $limit, string $uri, ?int $total = null) |
||
| 79 | { |
||
| 80 | $this->decorator = $decorator; |
||
| 81 | $this->data = $data; |
||
| 82 | $this->attributes = $attributes; |
||
| 83 | $this->offset = $offset; |
||
| 84 | $this->limit = $limit; |
||
| 85 | $this->total = $total; |
||
| 86 | $this->uri = $uri; |
||
| 87 | } |
||
| 88 | |||
| 151 |