| Total Complexity | 2 | 
| Total Lines | 19 | 
| Duplicated Lines | 0 % | 
| Changes | 1 | ||
| Bugs | 0 | Features | 1 | 
| 1 | <?php  | 
            ||
| 13 | class ViewHelper  | 
            ||
| 14 | { | 
            ||
| 15 | /**  | 
            ||
| 16 | * @param View|HasHelloFrontendFolderTrait $view  | 
            ||
| 17 | */  | 
            ||
| 18 | public static function registerFrontendPaths(View $view)  | 
            ||
| 19 |     { | 
            ||
| 20 |         $view->addPath(PathHelper::views('/Frontend'), 'Hello'); | 
            ||
| 21 |         $view->addPath(PathHelper::views('/Frontend'), 'HelloFrontend'); | 
            ||
| 22 | }  | 
            ||
| 23 | |||
| 24 | /**  | 
            ||
| 25 | * @param View|HasHelloAdminFolderTrait $view  | 
            ||
| 26 | */  | 
            ||
| 27 | public static function registerAdminPaths(View $view)  | 
            ||
| 32 | }  | 
            ||
| 33 | }  |