Total Complexity | 2 |
Total Lines | 33 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php |
||
21 | class Typo3 implements Iface |
||
22 | { |
||
23 | private $view; |
||
24 | |||
25 | |||
26 | /** |
||
27 | * Initializes the view object |
||
28 | * |
||
29 | * @param \TYPO3Fluid\Fluid\View\ViewInterface $view TYPO3 view |
||
30 | */ |
||
31 | public function __construct( \TYPO3Fluid\Fluid\View\ViewInterface $view ) |
||
34 | } |
||
35 | |||
36 | |||
37 | /** |
||
38 | * Renders the output based on the given template file name and the key/value pairs |
||
39 | * |
||
40 | * @param \Aimeos\Base\View\Iface $view View object |
||
41 | * @param string $filename File name of the view template |
||
42 | * @param array $values Associative list of key/value pairs |
||
43 | * @return string Output generated by the template |
||
44 | * @throws \Aimeos\Base\View\Exception If the template isn't found |
||
45 | */ |
||
46 | public function render( \Aimeos\Base\View\Iface $view, string $filename, array $values ) : string |
||
56 |
This check looks for calls to methods that do not seem to exist on a given type. It looks for the method on the type itself as well as in inherited classes or implemented interfaces.
This is most likely a typographical error or the method has been renamed.