| 1 | <?php namespace EvolutionCMS; |
||
| 6 | class ManagerTheme implements ManagerThemeInterface |
||
| 7 | { |
||
| 8 | /** |
||
| 9 | * @var CoreInterface |
||
| 10 | */ |
||
| 11 | protected $core; |
||
| 12 | |||
| 13 | /** |
||
| 14 | * @var $theme |
||
| 15 | */ |
||
| 16 | protected $theme; |
||
| 17 | |||
| 18 | public function __construct(CoreInterface $core, $theme = '') |
||
| 30 | |||
| 31 | public function loadSnippets() |
||
| 35 | |||
| 36 | public function pathSnipe($name) |
||
| 40 | |||
| 41 | public function pathElement($type, $name) |
||
| 45 | |||
| 46 | public function getChunk($name) |
||
| 50 | } |
||
| 51 |
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.