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/public | |
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/public')
-rw-r--r-- | lib/public/DB/QueryBuilder/IQueryBuilder.php | 2 | ||||
-rw-r--r-- | lib/public/Files/Storage.php | 38 | ||||
-rw-r--r-- | lib/public/Files/Storage/IStorage.php | 38 | ||||
-rw-r--r-- | lib/public/Util.php | 2 |
4 files changed, 40 insertions, 40 deletions
diff --git a/lib/public/DB/QueryBuilder/IQueryBuilder.php b/lib/public/DB/QueryBuilder/IQueryBuilder.php index 1cffaafaf96..69b5d5564fa 100644 --- a/lib/public/DB/QueryBuilder/IQueryBuilder.php +++ b/lib/public/DB/QueryBuilder/IQueryBuilder.php @@ -785,7 +785,7 @@ interface IQueryBuilder { * placeholder for you. An automatic placeholder will be of the name * ':dcValue1', ':dcValue2' etc. * - * For more information see {@link http://php.net/pdostatement-bindparam} + * For more information see {@link https://www.php.net/pdostatement-bindparam} * * Example: * <code> diff --git a/lib/public/Files/Storage.php b/lib/public/Files/Storage.php index 11aa7434708..2033fe5d28a 100644 --- a/lib/public/Files/Storage.php +++ b/lib/public/Files/Storage.php @@ -70,7 +70,7 @@ interface Storage extends IStorage { public function getId(); /** - * see http://php.net/manual/en/function.mkdir.php + * see https://www.php.net/manual/en/function.mkdir.php * implementations need to implement a recursive mkdir * * @param string $path @@ -80,7 +80,7 @@ interface Storage extends IStorage { public function mkdir($path); /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -89,7 +89,7 @@ interface Storage extends IStorage { public function rmdir($path); /** - * see http://php.net/manual/en/function.opendir.php + * see https://www.php.net/manual/en/function.opendir.php * * @param string $path * @return resource|false @@ -98,7 +98,7 @@ interface Storage extends IStorage { public function opendir($path); /** - * see http://php.net/manual/en/function.is-dir.php + * see https://www.php.net/manual/en/function.is-dir.php * * @param string $path * @return bool @@ -107,7 +107,7 @@ interface Storage extends IStorage { public function is_dir($path); /** - * see http://php.net/manual/en/function.is-file.php + * see https://www.php.net/manual/en/function.is-file.php * * @param string $path * @return bool @@ -116,7 +116,7 @@ interface Storage extends IStorage { public function is_file($path); /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -126,7 +126,7 @@ interface Storage extends IStorage { public function stat($path); /** - * see http://php.net/manual/en/function.filetype.php + * see https://www.php.net/manual/en/function.filetype.php * * @param string $path * @return string|false @@ -135,7 +135,7 @@ interface Storage extends IStorage { public function filetype($path); /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -200,7 +200,7 @@ interface Storage extends IStorage { public function getPermissions($path); /** - * see http://php.net/manual/en/function.file_exists.php + * see https://www.php.net/manual/en/function.file_exists.php * * @param string $path * @return bool @@ -209,7 +209,7 @@ interface Storage extends IStorage { public function file_exists($path); /** - * see http://php.net/manual/en/function.filemtime.php + * see https://www.php.net/manual/en/function.filemtime.php * * @param string $path * @return int|false @@ -218,7 +218,7 @@ interface Storage extends IStorage { public function filemtime($path); /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string|false @@ -227,7 +227,7 @@ interface Storage extends IStorage { public function file_get_contents($path); /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param mixed $data @@ -237,7 +237,7 @@ interface Storage extends IStorage { public function file_put_contents($path, $data); /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -246,7 +246,7 @@ interface Storage extends IStorage { public function unlink($path); /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -256,7 +256,7 @@ interface Storage extends IStorage { public function rename($path1, $path2); /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -266,7 +266,7 @@ interface Storage extends IStorage { public function copy($path1, $path2); /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -286,7 +286,7 @@ interface Storage extends IStorage { public function getMimeType($path); /** - * see http://php.net/manual/en/function.hash-file.php + * see https://www.php.net/manual/en/function.hash-file.php * * @param string $type * @param string $path @@ -297,7 +297,7 @@ interface Storage extends IStorage { public function hash($type, $path, $raw = false); /** - * see http://php.net/manual/en/function.free_space.php + * see https://www.php.net/manual/en/function.free_space.php * * @param string $path * @return int|false @@ -315,7 +315,7 @@ interface Storage extends IStorage { public function search($query); /** - * see http://php.net/manual/en/function.touch.php + * see https://www.php.net/manual/en/function.touch.php * If the backend does not support the operation, false should be returned * * @param string $path diff --git a/lib/public/Files/Storage/IStorage.php b/lib/public/Files/Storage/IStorage.php index 9cd5553b8bf..0f5e3e5f305 100644 --- a/lib/public/Files/Storage/IStorage.php +++ b/lib/public/Files/Storage/IStorage.php @@ -66,7 +66,7 @@ interface IStorage { public function getId(); /** - * see http://php.net/manual/en/function.mkdir.php + * see https://www.php.net/manual/en/function.mkdir.php * implementations need to implement a recursive mkdir * * @param string $path @@ -76,7 +76,7 @@ interface IStorage { public function mkdir($path); /** - * see http://php.net/manual/en/function.rmdir.php + * see https://www.php.net/manual/en/function.rmdir.php * * @param string $path * @return bool @@ -85,7 +85,7 @@ interface IStorage { public function rmdir($path); /** - * see http://php.net/manual/en/function.opendir.php + * see https://www.php.net/manual/en/function.opendir.php * * @param string $path * @return resource|false @@ -94,7 +94,7 @@ interface IStorage { public function opendir($path); /** - * see http://php.net/manual/en/function.is-dir.php + * see https://www.php.net/manual/en/function.is-dir.php * * @param string $path * @return bool @@ -103,7 +103,7 @@ interface IStorage { public function is_dir($path); /** - * see http://php.net/manual/en/function.is-file.php + * see https://www.php.net/manual/en/function.is-file.php * * @param string $path * @return bool @@ -112,7 +112,7 @@ interface IStorage { public function is_file($path); /** - * see http://php.net/manual/en/function.stat.php + * see https://www.php.net/manual/en/function.stat.php * only the following keys are required in the result: size and mtime * * @param string $path @@ -122,7 +122,7 @@ interface IStorage { public function stat($path); /** - * see http://php.net/manual/en/function.filetype.php + * see https://www.php.net/manual/en/function.filetype.php * * @param string $path * @return string|false @@ -131,7 +131,7 @@ interface IStorage { public function filetype($path); /** - * see http://php.net/manual/en/function.filesize.php + * see https://www.php.net/manual/en/function.filesize.php * The result for filesize when called on a folder is required to be 0 * * @param string $path @@ -196,7 +196,7 @@ interface IStorage { public function getPermissions($path); /** - * see http://php.net/manual/en/function.file_exists.php + * see https://www.php.net/manual/en/function.file_exists.php * * @param string $path * @return bool @@ -205,7 +205,7 @@ interface IStorage { public function file_exists($path); /** - * see http://php.net/manual/en/function.filemtime.php + * see https://www.php.net/manual/en/function.filemtime.php * * @param string $path * @return int|false @@ -214,7 +214,7 @@ interface IStorage { public function filemtime($path); /** - * see http://php.net/manual/en/function.file_get_contents.php + * see https://www.php.net/manual/en/function.file_get_contents.php * * @param string $path * @return string|false @@ -223,7 +223,7 @@ interface IStorage { public function file_get_contents($path); /** - * see http://php.net/manual/en/function.file_put_contents.php + * see https://www.php.net/manual/en/function.file_put_contents.php * * @param string $path * @param mixed $data @@ -233,7 +233,7 @@ interface IStorage { public function file_put_contents($path, $data); /** - * see http://php.net/manual/en/function.unlink.php + * see https://www.php.net/manual/en/function.unlink.php * * @param string $path * @return bool @@ -242,7 +242,7 @@ interface IStorage { public function unlink($path); /** - * see http://php.net/manual/en/function.rename.php + * see https://www.php.net/manual/en/function.rename.php * * @param string $path1 * @param string $path2 @@ -252,7 +252,7 @@ interface IStorage { public function rename($path1, $path2); /** - * see http://php.net/manual/en/function.copy.php + * see https://www.php.net/manual/en/function.copy.php * * @param string $path1 * @param string $path2 @@ -262,7 +262,7 @@ interface IStorage { public function copy($path1, $path2); /** - * see http://php.net/manual/en/function.fopen.php + * see https://www.php.net/manual/en/function.fopen.php * * @param string $path * @param string $mode @@ -282,7 +282,7 @@ interface IStorage { public function getMimeType($path); /** - * see http://php.net/manual/en/function.hash-file.php + * see https://www.php.net/manual/en/function.hash-file.php * * @param string $type * @param string $path @@ -293,7 +293,7 @@ interface IStorage { public function hash($type, $path, $raw = false); /** - * see http://php.net/manual/en/function.free_space.php + * see https://www.php.net/manual/en/function.free_space.php * * @param string $path * @return int|false @@ -302,7 +302,7 @@ interface IStorage { public function free_space($path); /** - * see http://php.net/manual/en/function.touch.php + * see https://www.php.net/manual/en/function.touch.php * If the backend does not support the operation, false should be returned * * @param string $path diff --git a/lib/public/Util.php b/lib/public/Util.php index 48a5844ecff..58a2850e3f5 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -316,7 +316,7 @@ class Util { * @param string $str file size in a fancy format * @return float a file size in bytes * - * Inspired by: http://www.php.net/manual/en/function.filesize.php#92418 + * Inspired by: https://www.php.net/manual/en/function.filesize.php#92418 * @since 4.0.0 */ public static function computerFileSize($str) { |