diff options
author | Roeland Jago Douma <rullzer@users.noreply.github.com> | 2020-12-22 09:53:31 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-12-22 09:53:31 +0100 |
commit | adc4f1a8113f33c206a15545b4e4911f4d73234f (patch) | |
tree | 279a51651e04f4216565825597871199f32b42a6 /lib/private/legacy/OC_Helper.php | |
parent | 72fda1033379af8dc8e40c4b89b333ac73c080f0 (diff) | |
parent | 68ce17e59bf8bc09757f9b56fdad458679d6e988 (diff) | |
download | nextcloud-server-adc4f1a8113f33c206a15545b4e4911f4d73234f.tar.gz nextcloud-server-adc4f1a8113f33c206a15545b4e4911f4d73234f.zip |
Merge pull request #22916 from J0WI/unifiy-links-to-php.net
Unify links to php.net
Diffstat (limited to 'lib/private/legacy/OC_Helper.php')
-rw-r--r-- | lib/private/legacy/OC_Helper.php | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/private/legacy/OC_Helper.php b/lib/private/legacy/OC_Helper.php index ccb99a6ebb8..391baf5bfab 100644 --- a/lib/private/legacy/OC_Helper.php +++ b/lib/private/legacy/OC_Helper.php @@ -94,7 +94,7 @@ class OC_Helper { * * Makes 2kB to 2048. * - * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 + * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418 */ public static function computerFileSize($str) { $str = strtolower($str); @@ -340,7 +340,7 @@ class OC_Helper { * @return array * * Returns an array with all keys from input lowercased or uppercased. Numbered indices are left as is. - * based on http://www.php.net/manual/en/function.array-change-key-case.php#107715 + * based on https://www.php.net/manual/en/function.array-change-key-case.php#107715 * */ public static function mb_array_change_key_case($input, $case = MB_CASE_LOWER, $encoding = 'UTF-8') { @@ -361,7 +361,7 @@ class OC_Helper { * * performs a search in a nested array * - * taken from http://www.php.net/manual/en/function.array-search.php#97645 + * taken from https://www.php.net/manual/en/function.array-search.php#97645 */ public static function recursiveArraySearch($haystack, $needle, $index = null) { $aIt = new RecursiveArrayIterator($haystack); |