X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=src%2FModel%2FFileTag.php;h=f4d04634fa78e1a5037e1b64c3660c4ee802cee8;hb=482cf1bbfeb7e60f9618c309fefcf7dfe7608e7e;hp=c743cb127827946ebcc03b163044a7e02d9a8f63;hpb=59bbb1ac994690b8429bc004b2d3fe159e55f655;p=friendica.git diff --git a/src/Model/FileTag.php b/src/Model/FileTag.php index c743cb1278..f4d04634fa 100644 --- a/src/Model/FileTag.php +++ b/src/Model/FileTag.php @@ -133,7 +133,7 @@ class FileTag * @return string A list of file tags. * @deprecated since 2019.06 use arrayToFile() instead */ - public static function listToFile($list, $type = 'file') + public static function listToFile(string $list, string $type = 'file') { $list_array = explode(',', $list); @@ -150,7 +150,7 @@ class FileTag * @return string Comma delimited list of tag names. * @deprecated since 2019.06 use fileToArray() instead */ - public static function fileToList($file, $type = 'file') + public static function fileToList(string $file, $type = 'file') { return implode(',', self::fileToArray($file, $type)); } @@ -166,7 +166,7 @@ class FileTag * @return boolean A value indicating success or failure. * @throws \Exception */ - public static function updatePconfig($uid, $file_old, $file_new, $type = 'file') + public static function updatePconfig(int $uid, string $file_old, string $file_new, string $type = 'file') { if (!intval($uid)) { return false;