diff options
author | Christopher Ng <chrng8@gmail.com> | 2022-03-07 17:20:52 +0000 |
---|---|---|
committer | Christopher Ng <chrng8@gmail.com> | 2022-03-07 18:14:51 +0000 |
commit | 26e3bdfce3f84345ba23f5a464f06a9b66faf3ca (patch) | |
tree | 3eeac85f635b451e2395b75096cefd97ac225e4c /lib | |
parent | eb60b650aac6cfde1483e7f3b28c45cfce1074be (diff) | |
download | nextcloud-server-26e3bdfce3f84345ba23f5a464f06a9b66faf3ca.tar.gz nextcloud-server-26e3bdfce3f84345ba23f5a464f06a9b66faf3ca.zip |
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.php | 6 |
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 */ |