Skip to content
Merged
Changes from 1 commit
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix(theming): Fix erronous phpdoc typing
Signed-off-by: Côme Chilliet <[email protected]>
  • Loading branch information
come-nc committed Apr 30, 2024
commit c99ebaa8662da8b1c71e10e14fe36dd8ff54167e
10 changes: 5 additions & 5 deletions apps/theming/lib/Util.php
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ public function generateRadioButton($color) {


/**
* @param $app string app name
* @param string $app app name
* @return string|ISimpleFile path to app icon / file of logo
*/
public function getAppIcon($app) {
Expand Down Expand Up @@ -248,8 +248,8 @@ public function getAppIcon($app) {
}

/**
* @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) {
Expand Down Expand Up @@ -295,8 +295,8 @@ public function getAppImage($app, $image) {
/**
* 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) {
Expand Down