fix(theming): Fix erronous phpdoc typing

Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
This commit is contained in:
Côme Chilliet 2024-04-29 13:57:41 +02:00
parent 37262c860a
commit c99ebaa866
No known key found for this signature in database
GPG Key ID: A3E2F658B28C760A
1 changed files with 5 additions and 5 deletions

View File

@ -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) {