| Total Complexity | 5 |
| Total Lines | 44 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 7 | class XerviceLoader implements \Twig_LoaderInterface |
||
| 8 | { |
||
| 9 | /** |
||
| 10 | * @param string $name |
||
| 11 | * |
||
| 12 | * @return \Twig_Source |
||
| 13 | * @throws \Twig_Error_Loader |
||
| 14 | */ |
||
| 15 | public function getSourceContext($name) |
||
| 16 | { |
||
| 17 | } |
||
| 18 | |||
| 19 | /** |
||
| 20 | * @param string $name |
||
| 21 | * |
||
| 22 | * @return string |
||
| 23 | * @throws \Twig_Error_Loader |
||
| 24 | */ |
||
| 25 | public function getCacheKey($name) |
||
| 26 | { |
||
| 27 | } |
||
| 28 | |||
| 29 | /** |
||
| 30 | * @param string $name |
||
| 31 | * @param int $time |
||
| 32 | * |
||
| 33 | * @return bool |
||
| 34 | * @throws \Twig_Error_Loader |
||
| 35 | */ |
||
| 36 | public function isFresh($name, $time) |
||
| 37 | { |
||
| 38 | } |
||
| 39 | |||
| 40 | /** |
||
| 41 | * @param string $name |
||
| 42 | * |
||
| 43 | * @return bool |
||
| 44 | */ |
||
| 45 | public function exists($name) |
||
| 47 | } |
||
| 48 | |||
| 49 | private function findTemplate(string $template) |
||
| 51 | |||
| 52 | } |
||
| 53 | } |
This check looks for private methods that have been defined, but are not used inside the class.