Conditions | 1 |
Paths | 1 |
Total Lines | 14 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 2 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
25 | public function compose(View $view) |
||
26 | { |
||
27 | $view->withAppBanner(Setting::get('app_banner')); |
||
|
|||
28 | $view->withAppBannerStyleFullWidth(Setting::get('style_fullwidth_header')); |
||
29 | $view->withAppBannerType(Setting::get('app_banner_type')); |
||
30 | $view->withAppDomain(Setting::get('app_domain')); |
||
31 | $view->withGitClientPath(Setting::get('git_client_path')); |
||
32 | $view->withGitRepositoriesPath(Setting::get('git_repositories_path')); |
||
33 | $view->withAppLocale(Setting::get('app_locale')); |
||
34 | $view->withAppName(Setting::get('app_name')); |
||
35 | $view->withAppStylesheet(Setting::get('app_stylesheet')); |
||
36 | $view->withAppUrl(Config::get('app.url')); |
||
37 | $view->withGoogleFontsUrl(Config::get('gitamin.google_fonts_url')); |
||
38 | } |
||
39 | } |
||
40 |
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.