Skip to content

Commit

Permalink
Added IsBookmarkedValue
Browse files Browse the repository at this point in the history
  • Loading branch information
ciastektk committed Aug 16, 2024
1 parent 0b0d085 commit f4a3dd9
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
<?php

/**
* @copyright Copyright (C) Ibexa AS. All rights reserved.
* @license For full copyright and license information view LICENSE file distributed with this source code.
*/
namespace Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion\Value;

use Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion\Value;

final class IsBookmarkedValue extends Value
{
private ?int $userId;

public function __construct(?int $userId)
{
$this->userId = $userId;
}

public function getUserId(): ?int
{
return $this->userId;
}
}

0 comments on commit f4a3dd9

Please sign in to comment.