summaryrefslogtreecommitdiffstats
path: root/lib/public/Files/Storage.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/public/Files/Storage.php')
-rw-r--r--lib/public/Files/Storage.php38
1 files changed, 19 insertions, 19 deletions
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