fix(theming): Fix erronous phpdoc typing

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
pull/44533/head
Côme Chilliet 3 weeks ago
parent 37262c860a
commit c99ebaa866
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A

@ -218,7 +218,7 @@ class Util {
/**
* @param $app string app name
* @param string $app app name
* @return string|ISimpleFile path to app icon / file of logo
*/
public function getAppIcon($app) {
@ -248,8 +248,8 @@ class Util {
}
/**
* @param $app string app name
* @param $image string relative path to image in app folder
* @param string $app app name
* @param string $image relative path to image in app folder
* @return string|false absolute path to image
*/
public function getAppImage($app, $image) {
@ -295,8 +295,8 @@ class Util {
/**
* replace default color with a custom one
*
* @param $svg string content of a svg file
* @param $color string color to match
* @param string $svg content of a svg file
* @param string $color color to match
* @return string
*/
public function colorizeSvg($svg, $color) {

Loading…
Cancel
Save