Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorChristopher Ng <chrng8@gmail.com>2022-03-07 20:20:52 +0300
committerChristopher Ng <chrng8@gmail.com>2022-03-07 21:14:51 +0300
commit26e3bdfce3f84345ba23f5a464f06a9b66faf3ca (patch)
tree3eeac85f635b451e2395b75096cefd97ac225e4c /lib
parenteb60b650aac6cfde1483e7f3b28c45cfce1074be (diff)
Note DI only usage in PHPDoc
Signed-off-by: Christopher Ng <chrng8@gmail.com>
Diffstat (limited to 'lib')
-rw-r--r--lib/public/Files/SimpleFS/ISimpleFile.php6
1 files changed, 5 insertions, 1 deletions
diff --git a/lib/public/Files/SimpleFS/ISimpleFile.php b/lib/public/Files/SimpleFS/ISimpleFile.php
index c0db4cc22e9..8f1921cb7cb 100644
--- a/lib/public/Files/SimpleFS/ISimpleFile.php
+++ b/lib/public/Files/SimpleFS/ISimpleFile.php
@@ -28,7 +28,11 @@ use OCP\Files\NotFoundException;
use OCP\Files\NotPermittedException;
/**
- * Interface ISimpleFile
+ * This interface allows to manage simple files.
+ *
+ * This interface must not be implemented in your application but
+ * instead should be used as a service and injected in your code with
+ * dependency injection.
*
* @since 11.0.0
*/