Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
22 | #[Override] |
||
23 | public function __toString(): string |
||
24 | { |
||
25 | $view = (string) ($this->request)(); |
||
26 | $uri = (string) $this->request->resourceObject->uri; |
||
27 | $this->etags->addTag($this->request->resourceObject); |
||
28 | $this->donutStorage->setView($uri, $view); |
||
29 | |||
30 | return sprintf(ResourceDonut::FOMRAT, $uri); |
||
31 | } |
||
33 |