Skip to content

Commit e14ba58

Browse files
authored
Merge pull request #22794 from nextcloud/version/20.0.0/rc1
20 RC1
2 parents dada6ec + cb735c6 commit e14ba58

2 files changed

Lines changed: 12 additions & 4 deletions

File tree

lib/public/User/GetQuotaEvent.php

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,26 +28,34 @@
2828

2929
/**
3030
* Event to allow apps to
31+
*
32+
* @since 20.0.0
3133
*/
3234
class 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;

version.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,10 +29,10 @@
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' => [

0 commit comments

Comments
 (0)