1: <?php 2: 3: namespace Charcoal\View; 4: 5: interface LoaderInterface 6: { 7: /** 8: * @param string $ident The template to load. 9: * @return string 10: */ 11: public function load($ident); 12: } 13: