]> source.dussan.org Git - nextcloud-server.git/commitdiff
Provide correct PHPDoc tags for public namespace 22794/head
authorMorris Jobke <hey@morrisjobke.de>
Thu, 17 Sep 2020 17:50:44 +0000 (19:50 +0200)
committerMorris Jobke <hey@morrisjobke.de>
Thu, 17 Sep 2020 17:50:44 +0000 (19:50 +0200)
Signed-off-by: Morris Jobke <hey@morrisjobke.de>
lib/public/User/GetQuotaEvent.php

index e7706db1730fcbdb521afa4fa127b0272ff42370..7f1cc39e5f8a4bfb5ff91b543b71d7f5ad42f0ee 100644 (file)
@@ -28,6 +28,8 @@ use OCP\IUser;
 
 /**
  * Event to allow apps to
+ *
+ * @since 20.0.0
  */
 class GetQuotaEvent extends Event {
        /** @var IUser */
@@ -35,11 +37,17 @@ class GetQuotaEvent extends Event {
        /** @var string|null */
        private $quota = null;
 
+       /**
+        * @since 20.0.0
+        */
        public function __construct(IUser $user) {
                parent::__construct();
                $this->user = $user;
        }
 
+       /**
+        * @since 20.0.0
+        */
        public function getUser(): IUser {
                return $this->user;
        }
@@ -47,7 +55,7 @@ class GetQuotaEvent extends Event {
        /**
         * Get the set quota as human readable string, or null if no overwrite is set
         *
-        * @return string|null
+        * @since 20.0.0
         */
        public function getQuota(): ?string {
                return $this->quota;
@@ -56,7 +64,7 @@ class GetQuotaEvent extends Event {
        /**
         * Set the quota overwrite as human readable string
         *
-        * @param string $quota
+        * @since 20.0.0
         */
        public function setQuota(string $quota): void {
                $this->quota = $quota;