Skip to content

Commit

Permalink
fixup! feat(Context): add share logic for contexts
Browse files Browse the repository at this point in the history
  • Loading branch information
blizzz committed Apr 18, 2024
1 parent 9da4369 commit a1d4a12
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions lib/Db/ContextNavigation.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
* @method setDisplayMode(int $value): void
*/
class ContextNavigation extends Entity implements \JsonSerializable {
protected ?int $shareId;
protected ?string $userId;
protected ?int $displayMode;
protected ?int $shareId = null;
protected ?string $userId = null;
protected ?int $displayMode = null;

public function __construct() {
$this->addType('shareId', 'integer');
Expand Down

0 comments on commit a1d4a12

Please sign in to comment.