Skip to content

Commit 10fc9e6

Browse files
authored
Merge pull request #1028 from nextcloud/carl/fix-saml
fix: DavPluging arguments
2 parents eaf2ba4 + acb4171 commit 10fc9e6

File tree

1 file changed

+2
-7
lines changed

1 file changed

+2
-7
lines changed

lib/Db/SessionData.php

Lines changed: 2 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,12 @@
1212
use OCP\DB\Types;
1313

1414
/**
15+
* @method getId(): string
16+
* @method setId(string $id): void
1517
* @method setTokenId(int $tokenId): void
1618
* @method getTokenId(): int
1719
*/
1820
class SessionData extends Entity {
19-
/** @var string */
20-
public $id;
2121
public ?string $data = null;
2222
protected ?int $tokenId = null;
2323

@@ -29,11 +29,6 @@ public function __construct() {
2929
$this->addType('data', Types::TEXT);
3030
}
3131

32-
public function setId(string $id): void {
33-
$this->id = $id;
34-
$this->markFieldUpdated('id');
35-
}
36-
3732
public function setData(SessionDataModel $input): void {
3833
$this->data = json_encode($input);
3934
$this->markFieldUpdated('data');

0 commit comments

Comments
 (0)