summaryrefslogtreecommitdiffstats
path: root/lib/private/Files/Storage/Wrapper/Wrapper.php
diff options
context:
space:
mode:
authorRoeland Jago Douma <rullzer@users.noreply.github.com>2020-12-22 09:53:31 +0100
committerGitHub <noreply@github.com>2020-12-22 09:53:31 +0100
commitadc4f1a8113f33c206a15545b4e4911f4d73234f (patch)
tree279a51651e04f4216565825597871199f32b42a6 /lib/private/Files/Storage/Wrapper/Wrapper.php
parent72fda1033379af8dc8e40c4b89b333ac73c080f0 (diff)
parent68ce17e59bf8bc09757f9b56fdad458679d6e988 (diff)
downloadnextcloud-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/Files/Storage/Wrapper/Wrapper.php')
-rw-r--r--lib/private/Files/Storage/Wrapper/Wrapper.php38
1 files changed, 19 insertions, 19 deletions
diff --git a/lib/private/Files/Storage/Wrapper/Wrapper.php b/lib/private/Files/Storage/Wrapper/Wrapper.php
index e94f3714c9e..43e57c688d1 100644
--- a/lib/private/Files/Storage/Wrapper/Wrapper.php
+++ b/lib/private/Files/Storage/Wrapper/Wrapper.php
@@ -74,7 +74,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.mkdir.php
+ * see https://www.php.net/manual/en/function.mkdir.php
*
* @param string $path
* @return bool
@@ -84,7 +84,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.rmdir.php
+ * see https://www.php.net/manual/en/function.rmdir.php
*
* @param string $path
* @return bool
@@ -94,7 +94,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.opendir.php
+ * see https://www.php.net/manual/en/function.opendir.php
*
* @param string $path
* @return resource
@@ -104,7 +104,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -114,7 +114,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -124,7 +124,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -135,7 +135,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.filetype.php
+ * see https://www.php.net/manual/en/function.filetype.php
*
* @param string $path
* @return bool
@@ -145,7 +145,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -217,7 +217,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -227,7 +227,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.filemtime.php
+ * see https://www.php.net/manual/en/function.filemtime.php
*
* @param string $path
* @return int
@@ -237,7 +237,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -247,7 +247,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -258,7 +258,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.unlink.php
+ * see https://www.php.net/manual/en/function.unlink.php
*
* @param string $path
* @return bool
@@ -268,7 +268,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -279,7 +279,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -290,7 +290,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -312,7 +312,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * see http://php.net/manual/en/function.hash.php
+ * see https://www.php.net/manual/en/function.hash.php
*
* @param string $type
* @param string $path
@@ -324,7 +324,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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
@@ -344,7 +344,7 @@ class Wrapper implements \OC\Files\Storage\Storage, ILockingStorage, IWriteStrea
}
/**
- * 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