| Total Complexity | 1 |
| Total Lines | 26 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 20 | class Context extends Base implements Iface |
||
| 21 | { |
||
| 22 | /** |
||
| 23 | * Adds the data to the view object required by the templates |
||
| 24 | * |
||
| 25 | * @param \Aimeos\MW\View\Iface $view The view object which generates the HTML output |
||
| 26 | * @param array &$tags Result array for the list of tags that are associated to the output |
||
| 27 | * @param string|null &$expire Result variable for the expiration date of the output (null for no expiry) |
||
| 28 | * @return \Aimeos\MW\View\Iface The view object with the data required by the templates |
||
| 29 | * @since 2020.07 |
||
| 30 | */ |
||
| 31 | public function addData( \Aimeos\MW\View\Iface $view, array &$tags = [], string &$expire = null ) : \Aimeos\MW\View\Iface |
||
| 48 |