Skip to content

Commit

Permalink
Enhance Criterion::getSpecifications() phpdoc
Browse files Browse the repository at this point in the history
  • Loading branch information
adriendupuis committed Dec 12, 2024
1 parent 45960d5 commit decfe12
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/contracts/Repository/Values/Content/Query/Criterion.php
Original file line number Diff line number Diff line change
Expand Up @@ -118,10 +118,10 @@ public function __construct(?string $target, ?string $operator, $value, ?Value $
*
* Returns the combination of the Criterion's supported operator/value,
* as an array of {@see \Ibexa\Contracts\Core\Repository\Values\Content\Query\Criterion\Operator\Specifications} objects
* - `$operator` is a supported {@see Operator} constant.
* - `$valueFormat is the type of input value this operator requires, either array ({@see Specifications::FORMAT_ARRAY}) or single ({@see Specifications::FORMAT_SINGLE}).
* - `$valueTypes` are bitwise flags of types the operator will accept ({@see Specifications::TYPE_BOOLEAN}, {@see Specifications::TYPE_INTEGER}, and/or {@see Specifications::TYPE_STRING}).
* - `$valueCount` is an integer saying how many values are expected.
* - {@see Specifications::$operator} is a supported {@see Operator} constant.
* - {@see Specifications::$valueFormat} is the type of input value this operator requires, either array ({@see Specifications::FORMAT_ARRAY}) or single ({@see Specifications::FORMAT_SINGLE}).
* - {@see Specifications::$valueTypes} are bitwise flags of types the operator will accept ({@see Specifications::TYPE_BOOLEAN}, {@see Specifications::TYPE_INTEGER}, and/or {@see Specifications::TYPE_STRING}).
* - {@see Specifications::$valueCount} is an integer saying how many values are expected.
*
* ```
* // IN and EQ are supported
Expand Down

0 comments on commit decfe12

Please sign in to comment.