Conditions | 1 |
Paths | 1 |
Total Lines | 15 |
Code Lines | 12 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 1 |
1 | <?php |
||
24 | public function compose(View $view) |
||
25 | { |
||
26 | // Theme colors. |
||
27 | $view->withThemeBackgroundColor(Setting::get('style_background_color', '#F0F3F4')); |
||
|
|||
28 | $view->withThemeBackgroundFills(Setting::get('style_background_fills', '#FFFFFF')); |
||
29 | $view->withThemeBannerBackgroundColor(Setting::get('style_banner_background_color', '')); |
||
30 | $view->withThemeBannerPadding(Setting::get('style_banner_padding', '40px 0')); |
||
31 | $view->withThemeTextColor(Setting::get('style_text_color', '#333333')); |
||
32 | $view->withThemeReds(Setting::get('style_reds', '#ff6f6f')); |
||
33 | $view->withThemeBlues(Setting::get('style_blues', '#3498db')); |
||
34 | $view->withThemeGreens(Setting::get('style_greens', '#7ED321')); |
||
35 | $view->withThemeYellows(Setting::get('style_yellows', '#F7CA18')); |
||
36 | $view->withThemeOranges(Setting::get('style_oranges', '#FF8800')); |
||
37 | $view->withThemeLinks(Setting::get('style_links', '#7ED321')); |
||
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.