File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2828
2929/**
3030 * Event to allow apps to
31+ *
32+ * @since 20.0.0
3133 */
3234class GetQuotaEvent extends Event {
3335 /** @var IUser */
3436 private $ user ;
3537 /** @var string|null */
3638 private $ quota = null ;
3739
40+ /**
41+ * @since 20.0.0
42+ */
3843 public function __construct (IUser $ user ) {
3944 parent ::__construct ();
4045 $ this ->user = $ user ;
4146 }
4247
48+ /**
49+ * @since 20.0.0
50+ */
4351 public function getUser (): IUser {
4452 return $ this ->user ;
4553 }
4654
4755 /**
4856 * Get the set quota as human readable string, or null if no overwrite is set
4957 *
50- * @return string|null
58+ * @since 20.0.0
5159 */
5260 public function getQuota (): ?string {
5361 return $ this ->quota ;
@@ -56,7 +64,7 @@ public function getQuota(): ?string {
5664 /**
5765 * Set the quota overwrite as human readable string
5866 *
59- * @param string $quota
67+ * @since 20.0.0
6068 */
6169 public function setQuota (string $ quota ): void {
6270 $ this ->quota = $ quota ;
Original file line number Diff line number Diff line change 2929// between betas, final and RCs. This is _not_ the public version number. Reset minor/patchlevel
3030// when updating major/minor version number.
3131
32- $ OC_Version = [20 , 0 , 0 , 6 ];
32+ $ OC_Version = [20 , 0 , 0 , 7 ];
3333
3434// The human readable string
35- $ OC_VersionString = '20.0.0 Beta 4 ' ;
35+ $ OC_VersionString = '20.0.0 RC1 ' ;
3636
3737$ OC_VersionCanBeUpgradedFrom = [
3838 'nextcloud ' => [
You can’t perform that action at this time.
0 commit comments