| Total Complexity | 8 |
| Total Lines | 45 |
| Duplicated Lines | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 5 | abstract class Images |
||
| 6 | { |
||
| 7 | /** |
||
| 8 | * Gets the path of the logo. |
||
| 9 | * |
||
| 10 | * @param string $theme |
||
| 11 | * @param int $width |
||
| 12 | * @param string $logo_small |
||
| 13 | * @param string $logo |
||
| 14 | * @param bool $only_company |
||
| 15 | * |
||
| 16 | * @return string|false |
||
| 17 | */ |
||
| 18 | public static function getLogo(string $theme, int &$width, string $logo_small = '', string $logo = '', bool $only_company = false) |
||
| 52 |