diff options
author | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:23:07 +0200 |
---|---|---|
committer | J0WI <J0WI@users.noreply.github.com> | 2020-09-17 17:40:04 +0200 |
commit | 68ce17e59bf8bc09757f9b56fdad458679d6e988 (patch) | |
tree | 324ade0863f0680002324ccddcd8f4ae5e06f97c /lib/public | |
parent | ec07ca2abbc88f395b8eeedc4b2e5b679018a673 (diff) | |
download | nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.tar.gz nextcloud-server-68ce17e59bf8bc09757f9b56fdad458679d6e988.zip |
Unify links to php.net
Update all links to https://www.php.net/
Signed-off-by: J0WI <J0WI@users.noreply.github.com>
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 3a9c8460439..a4a03e5a94b 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 d642512641d..fb56e7e3bfb 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 string $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 f5073d1ad73..f8877895747 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 string $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 72f061afb45..3e41cfedae8 100644 --- a/lib/public/Util.php +++ b/lib/public/Util.php @@ -315,7 +315,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) { |