diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html index c5a0e71ee4..aacd24f5f6 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-FieldType.html @@ -39139,21 +39139,20 @@

Parameters

Return values

array<string|int, mixed>

-

Hash with relation type as key and array of destination content ids as value.

-

Example: - -array( -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => array( -"contentIds" => array( 12, 13, 14 ), -"locationIds" => array( 24 ) -), -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => array( -"contentIds" => array( 12 ), -"locationIds" => array( 24, 45 ) -), -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => array( 12 ) -) -

+

Hash with relation type as key and array of destination content IDs as value.

+

Example:

+
[
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => [
+        'contentIds' => [12, 13, 14],
+        'locationIds' => [24]
+    ],
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => [
+        'contentIds" => [12],
+        'locationIds' => [24, 45]
+    ],
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => [12]
+]
+
@@ -39258,20 +39257,19 @@

Best practice:

It is considered best practice to return a hash map, which contains rudimentary settings structures, like e.g. for the "ezstring" FieldType

- - array( - 'stringLength' => array( - 'minStringLength' => array( - 'type' => 'int', - 'default' => 0, - ), - 'maxStringLength' => array( - 'type' => 'int' - 'default' => null, - ) - ), - ); - +
[
+    'stringLength' => [
+        'minStringLength' => [
+            'type'    => 'int',
+            'default' => 0,
+        ],
+        'maxStringLength' => [
+            'type'    => 'int'
+            'default' => null,
+        ],
+    ],
+];
+
diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html index 2a51ed45ee..173553e819 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-Type.html @@ -39237,21 +39237,20 @@

Parameters

Return values

array<string|int, mixed>

-

Hash with relation type as key and array of destination content ids as value.

-

Example: - -array( -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => array( -"contentIds" => array( 12, 13, 14 ), -"locationIds" => array( 24 ) -), -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => array( -"contentIds" => array( 12 ), -"locationIds" => array( 24, 45 ) -), -\Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => array( 12 ) -) -

+

Hash with relation type as key and array of destination content IDs as value.

+

Example:

+
[
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::LINK => [
+        'contentIds' => [12, 13, 14],
+        'locationIds' => [24]
+    ],
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::EMBED => [
+        'contentIds" => [12],
+        'locationIds' => [24, 45]
+    ],
+    \Ibexa\Contracts\Core\Repository\Values\Content\Relation::FIELD => [12]
+]
+
@@ -39356,20 +39355,19 @@

Best practice:

It is considered best practice to return a hash map, which contains rudimentary settings structures, like e.g. for the "ezstring" FieldType

- - array( - 'stringLength' => array( - 'minStringLength' => array( - 'type' => 'int', - 'default' => 0, - ), - 'maxStringLength' => array( - 'type' => 'int' - 'default' => null, - ) - ), - ); - +
[
+    'stringLength' => [
+        'minStringLength' => [
+            'type'    => 'int',
+            'default' => 0,
+        ],
+        'maxStringLength' => [
+            'type'    => 'int'
+            'default' => null,
+        ],
+    ],
+];
+
@@ -40100,19 +40098,18 @@

-

This is an operation method for acceptValue().

+

This is an operation method for Type::acceptValue().

Default implementation expects the value class to reside in the same namespace as its FieldType class and is named "Value".

-

Example implementation: - -protected function checkValueType($value): void -{ -if ( !$inputValue instanceof \My\FieldType\CookieJar\Value ) ) -{ -throw new InvalidArgumentException( "Given value type is not supported." ); -} -} -

+

Example implementation:

+
 protected function checkValueType($value): void
+ {
+     if (!$inputValue instanceof \My\FieldType\CookieJar\Value))
+     {
+         throw new InvalidArgumentException("Given value type isn't supported.");
+     }
+ }
+

Parameters

@@ -40138,7 +40135,7 @@

Parameters

-

A value returned by createValueFromInput().

+

A value returned by Type::createValueFromInput().

@@ -40202,19 +40199,18 @@

If given $inputValue could not be converted or is already an instance of dedicate value object, the method should simply return it.

-

This is an operation method for acceptValue().

-

Example implementation: - -protected function createValueFromInput( $inputValue ) -{ -if ( is_array( $inputValue ) ) -{ -$inputValue = \My\FieldType\CookieJar\Value( $inputValue ); -}

-
 return $inputValue;
+

This is an operation method for Type::acceptValue().

+

Example implementation:

+
 protected function createValueFromInput($inputValue)
+ {
+     if (is_array($inputValue))
+     {
+         $inputValue = \My\FieldType\CookieJar\Value($inputValue);
+     }
+
+     return $inputValue;
+ }
 
-

} -

Parameters

diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-ValidationError-ConstraintViolationAdapter.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-ValidationError-ConstraintViolationAdapter.html index 9dafd08907..f16faec43f 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-ValidationError-ConstraintViolationAdapter.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-FieldType-Generic-ValidationError-ConstraintViolationAdapter.html @@ -5,8 +5,7 @@ ConstraintViolationAdapter | PHP API Reference (Ibexa Documentation) - + @@ -38314,7 +38313,7 @@

ConstraintViolationAdapter.php : - 20 + 22
@@ -38324,10 +38323,14 @@

ValidationError -

{@see \Symfony\Component\Validator\ConstraintViolationInterface} to -{@see \Ibexa\Contracts\Core\FieldType\ValidationError} adapter.

+

Constraint violation validation error.

+
+

Adapts ConstraintViolationInterface to +ValidationError.

+ +
@@ -38354,7 +38357,7 @@

ConstraintViolationAdapter.php : - 35 + 37
@@ -38415,7 +38418,7 @@

ConstraintViolationAdapter.php : - 54 + 56
@@ -38452,7 +38455,7 @@

ConstraintViolationAdapter.php : - 41 + 43
@@ -38489,7 +38492,7 @@

ConstraintViolationAdapter.php : - 49 + 51
diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Target-Builder-VersionBuilder.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Target-Builder-VersionBuilder.html index d188510049..6d3948bdf8 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Target-Builder-VersionBuilder.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Target-Builder-VersionBuilder.html @@ -5,7 +5,7 @@ VersionBuilder | PHP API Reference (Ibexa Documentation) - + @@ -38313,16 +38313,20 @@

VersionBuilder.php : - 19 + 21
-

Builder of {@see \Ibexa\Contracts\Core\Limitation\Target\Version} instance.

+

Version builder.

+
+

Builder of Version instance.

+ +
@@ -38349,7 +38353,7 @@

VersionBuilder.php : - 24 + 26
@@ -38385,7 +38389,7 @@

VersionBuilder.php : - 96 + 100
@@ -38402,7 +38406,7 @@

-
public changeStatusTo(int $status) : self
+
public changeStatusTo(int $status) : VersionBuilder
@@ -38412,7 +38416,7 @@

-

Supported: VersionInfo::STATUS_DRAFT, VersionInfo::STATUS_PUBLISHED, VersionInfo::STATUS_ARCHIVED

+

Supported: VersionInfo::STATUS_DRAFT, VersionInfo::STATUS_PUBLISHED, VersionInfo::STATUS_ARCHIVED

Parameters

@@ -38443,7 +38447,7 @@

Parameters

Return values

-

self

+

VersionBuilder

Tags @@ -38474,7 +38478,7 @@

VersionBuilder.php : - 70 + 74
@@ -38491,7 +38495,7 @@

-
public createFromAnyContentTypeOf(array<string|int, int> $contentTypeIds) : self
+
public createFromAnyContentTypeOf(array<int, int> $contentTypeIds) : VersionBuilder
@@ -38516,7 +38520,7 @@

Parameters

$contentTypeIds - array<string|int, int> + array<int, int> - @@ -38528,7 +38532,7 @@

Parameters

Return values

-

self

+

VersionBuilder

Tags @@ -38552,7 +38556,7 @@

VersionBuilder.php : - 147 + 151
@@ -38569,7 +38573,7 @@

-
public publishTranslations(array<string|int, string> $languageCodes) : self
+
public publishTranslations(array<int, string> $languageCodes) : VersionBuilder
@@ -38594,7 +38598,7 @@

Parameters

$languageCodes - array<string|int, string> + array<int, string> - @@ -38606,7 +38610,7 @@

Parameters

Return values

-

self

+

VersionBuilder

Tags @@ -38630,7 +38634,7 @@

VersionBuilder.php : - 48 + 52
@@ -38647,7 +38651,7 @@

-
public translateToAnyLanguageOf(array<string|int, mixed> $languageCodes) : self
+
public translateToAnyLanguageOf(array<string|int, mixed> $languageCodes) : VersionBuilder
@@ -38684,7 +38688,7 @@

Parameters

Return values

-

self

+

VersionBuilder

Tags @@ -38708,7 +38712,7 @@

VersionBuilder.php : - 32 + 36
@@ -38724,7 +38728,7 @@

-
public updateFields(array<string|int, Field$updatedFields) : self
+
public updateFields(array<string|int, Field$updatedFields) : VersionBuilder
@@ -38761,7 +38765,7 @@

Parameters

Return values

-

self

+

VersionBuilder

@@ -38771,7 +38775,7 @@

VersionBuilder.php : - 121 + 125

@@ -38788,7 +38792,7 @@

-
public updateFieldsTo(string|null $initialLanguageCode, array<string|int, Field$fields) : self
+
public updateFieldsTo(string|null $initialLanguageCode, array<int, Field$fields) : VersionBuilder
@@ -38827,7 +38831,7 @@

Parameters

$fields - array<string|int, Field> + array<int, Field> - @@ -38839,7 +38843,7 @@

Parameters

Return values

-

self

+

VersionBuilder

diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html index 34c03d1ae4..e94d411b2e 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Limitation-Type.html @@ -38343,10 +38343,11 @@

Type.php : - 34 + 46
+

The type abstains from voting.

@@ -38366,6 +38367,13 @@

+
+

Constant for return value of Type::evaluate().

+

Returning ACCESS_ABSTAIN must mean that evaluate does not support the provided $object or $targets, +this is only supported by role limitations as policy limitations should not allow this.

+

Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.

+ +

@@ -38374,10 +38382,11 @@

Type.php : - 35 + 57

+

Access is denied.

@@ -38397,6 +38406,11 @@

+
+

Constant for return value of Type::evaluate().

+

Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.

+ +

@@ -38405,11 +38419,11 @@

Type.php : - 33 + 32

-

Constants for return value of {@see evaluate()}.

+

Access is granted.

@@ -38430,8 +38444,7 @@

-

Currently ACCESS_ABSTAIN must mean that evaluate does not support the provided $object or $targets, -this is currently only supported by role limitations as policy limitations should not allow this.

+

Constant for return value of Type::evaluate().

Note: In future version constant values might change to 1, 0 and -1 as used in Symfony.

@@ -38443,11 +38456,11 @@

Type.php : - 43 + 66
-

Constants for valueSchema() return values.

+

Limitation's value must be an array of location IDs.

@@ -38468,8 +38481,8 @@

-

Used in cases where a certain value is accepted but the options are to many to return as a hash of options. -GUI should typically present option to browse content tree to select limitation value(s).

+

Constant for Type::valueSchema() return values.

+

GUI should typically present option to browse content tree to select limitation value(s).

@@ -38480,10 +38493,11 @@

Type.php : - 44 + 75
+

Limitation's value must be an array of location paths.

@@ -38503,6 +38517,11 @@

+
+

Constant for Type::valueSchema() return values.

+

GUI should typically present option to browse content tree to select limitation value(s).

+ +

@@ -38517,7 +38536,7 @@

Type.php : - 55 + 86
@@ -38601,7 +38620,7 @@

Type.php : - 78 + 109
@@ -38618,7 +38637,7 @@

-
public buildValue(array<string|int, mixed> $limitationValues) : Limitation
+
public buildValue(array<int, mixed> $limitationValues) : Limitation
@@ -38628,7 +38647,7 @@

-

The is the method to create values as Limitation type needs value knowledge anyway in acceptValue, +

This is the method to create values as Limitation type needs value knowledge anyway in acceptValue, the reverse relation is provided by means of identifier lookup (Value has identifier, and so does RoleService).

@@ -38648,7 +38667,7 @@

Parameters

$limitationValues - array<string|int, mixed> + array<int, mixed> - @@ -38670,7 +38689,7 @@

Type.php : - 97 + 128
@@ -38687,7 +38706,7 @@

-
public evaluate(Limitation $value, UserReference $currentUser, ValueObject $object[, array<string|int, ValueObject>|null $targets = null ]) : bool|null
+
public evaluate(Limitation $value, UserReference $currentUser, ValueObject $object[, array<int, ValueObject>|null $targets = null ]) : bool|null
@@ -38754,7 +38773,7 @@

Parameters

$targets - array<string|int, ValueObject>|null + array<int, ValueObject>|null null @@ -38773,7 +38792,7 @@

Parameters

Return values

bool|null

-

Returns one of ACCESS_* constants

+

Returns one of ACCESS_* constants, Type::ACCESS_GRANTED, Type::ACCESS_ABSTAIN, or Type::ACCESS_DENIED.

@@ -38818,7 +38837,7 @@

Type.php : - 110 + 141
@@ -38915,7 +38934,7 @@

Type.php : - 66 + 97
@@ -38932,7 +38951,7 @@

-
public validate(Limitation $limitationValue) : array<string|int, ValidationError>
+
public validate(Limitation $limitationValue) : array<int, ValidationError>
@@ -38973,7 +38992,7 @@

Parameters

Return values

-

array<string|int, ValidationError>

+

array<int, ValidationError>

@@ -38983,7 +39002,7 @@

Type.php : - 119 + 150

diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-LocationService.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-LocationService.html index 7ccf704c55..c45d07b020 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-LocationService.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-LocationService.html @@ -38474,11 +38474,11 @@

LocationService.php : - 276 + 278
-

Count total number of items returned by {@see find} method.

+

Counts total number of items matching the filter.

@@ -38491,7 +38491,7 @@

@@ -38500,6 +38500,10 @@

+
+

Return the count of items that would be returned by LocationService::find() method.

+ +

Parameters

-
public count(Filter $filter[, array<string|int, string> $languages = null ]) : int
+
public count(Filter $filter[, array<int, string>|null $languages = null ]) : int
@@ -38530,7 +38534,7 @@

Parameters

$languages @@ -38808,7 +38812,7 @@

Parameters

$languages @@ -39165,7 +39169,7 @@

Parameters

- array<string|int, string> + array<int, string>|null null @@ -38769,7 +38773,7 @@

-
public find(Filter $filter[, array<string|int, string> $languages = null ]) : LocationList
+
public find(Filter $filter[, array<int, string>|null $languages = null ]) : LocationList
- array<string|int, string> + array<int, string>|null null @@ -39114,7 +39118,7 @@

-
public loadAllLocations([int $offset = 0 ][, int $limit = 25 ]) : array<string|int, Location>
+
public loadAllLocations([int $offset = 0 ][, int $limit = 25 ]) : array<int, Location>

Return values

-

array<string|int, Location>

+

array<int, Location>

@@ -39574,7 +39578,7 @@

-
public loadLocationList(array<string|int, mixed> $locationIds[, array<string|int, string>|null $prioritizedLanguages = null ][, bool|null $useAlwaysAvailable = null ]) : array<string|int, Location>|iterable<string|int, mixed>
+
public loadLocationList(array<string|int, mixed> $locationIds[, array<int, string>|null $prioritizedLanguages = null ][, bool|null $useAlwaysAvailable = null ]) : array<int, Location>|iterable<string|int, Location>
@@ -39617,7 +39621,7 @@

Parameters

$prioritizedLanguages - array<string|int, string>|null + array<int, string>|null null @@ -39651,7 +39655,7 @@

Parameters

Return values

-

array<string|int, Location>|iterable<string|int, mixed>

+

array<int, Location>|iterable<string|int, Location>

diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-SearchService.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-SearchService.html index f58842cfbc..1628b29c55 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-SearchService.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-SearchService.html @@ -38336,11 +38336,11 @@

SearchService.php : - 108 + 123

-

Capability flag for advanced fulltext feature for use with {@see ::supports()}.

+

Capability flag for advanced fulltext feature.

@@ -38361,7 +38361,8 @@

-

Advance full text is a feature making to possible by current engine to parse advance full text expressions.

+

To use with SearchService::supports().

+

Advance full text is a feature making to possible by current engine to parse advance full text expressions.

@@ -38386,11 +38387,11 @@

SearchService.php : - 115 + 132

-

Capability flag for aggregation feature for use with {@see ::supports()}.

+

Capability flag for aggregation feature.

@@ -38410,6 +38411,10 @@

+
+

To use with SearchService::supports().

+ +

@@ -38418,11 +38423,11 @@

SearchService.php : - 57 + 64

-

Capability flag for custom fields feature for use with {@see ::supports()}.

+

Capability flag for custom fields feature.

@@ -38443,10 +38448,14 @@

-

Custom fields is the capability for search engines to 1. allow you to extend the search index via plugins to -generate custom fields, like a different representation (format, ...) of an existing field or similar. And 2. -allow you on some search criteria to specify this custom field to rather query on that instead of the default -field generated by the system.

+

To use with SearchService::supports().

+

Custom fields is the capability for search engines to:

+
    +
  • Allow you to extend the search index via plugins to +generate custom fields, like a different representation (format, ...) of an existing field or similar.
  • +
  • Allow you on some search criteria to specify this custom field to rather query on that instead of the default +field generated by the system.
  • +
@@ -38457,11 +38466,11 @@

SearchService.php : - 45 + 49

-

Capability flag for facets feature for use with {@see ::supports()}.

+

Capability flag for facets feature.

@@ -38482,7 +38491,8 @@

-

Faceted search: https://en.wikipedia.org/wiki/Faceted_search

+

To use with SearchService::supports().

+

Faceted search:

Note: Even if search engine tells you this is supported, beware:

  • It might not support all facets, by design it will only return facets for facet builders the search engine supports.
  • @@ -38499,11 +38509,11 @@

    SearchService.php : - 31 + 33
    -

    Capability flag for scoring feature for use with {@see ::supports()}.

    +

    Capability flag for scoring feature.

    @@ -38524,7 +38534,8 @@

    -

    Scoring, a search feature telling you how well one search hit scores compared to other items in the search result. +

    To use with SearchService::supports().

    +

    Scoring, a search feature telling you how well one search hit scores compared to other items in the search result. When this is supported you can expect search engine to populate SearchHit->score and SearchResult->maxScore properties as well as sort by this if no sort clauses are specified.

    @@ -38537,11 +38548,11 @@

    SearchService.php : - 70 + 79
    -

    Capability flag for spellcheck feature for use with {@see ::supports()}.

    +

    Capability flag for spellcheck feature.

    @@ -38562,7 +38573,8 @@

    -

    Spell check within search capabilities refers to ability to suggest better wordings in fulltext search string.

    +

    To use with SearchService::supports().

    +

    Spell check within search capabilities refers to ability to suggest better wordings in fulltext search string.

    WARNING: This feature is considered experimental given it is not completely designed yet in terms of how it should interact with FullText criterion (singular) which is the most relevant here. Also given how FullText can be part of a more complex criteria it might imply a need to more strictly define where users are supposed to place FullText vs other criteria.

    @@ -38576,11 +38588,11 @@

    SearchService.php : - 98 + 111
    -

    Capability flag for suggest feature for use with {@see ::supports()}.

    +

    Capability flag for suggest feature.

    @@ -38601,7 +38613,8 @@

    -

    WARNING: This feature is considered experimental given it is not completely clear what it is supposed to do. Feature +

    To use with SearchService::supports().

    +

    WARNING: This feature is considered experimental given it is not completely clear what it is supposed to do. Feature might be deprecated in the future.

    @@ -38619,7 +38632,7 @@

    SearchService.php : - 131 + 149
    @@ -38636,7 +38649,7 @@

    -
    public findContent(Query $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    +
    public findContent(Query $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    @@ -38675,7 +38688,7 @@

    Parameters

    $languageFilter - array<string|int, mixed> + array<string, mixed>|array<int, string> [] @@ -38684,8 +38697,14 @@

    Parameters

    Configuration for specifying prioritized languages query will be performed on. Also used to define which field languages are loaded for the returned content. -Currently supports: array("languages" => array(,..), "useAlwaysAvailable" => bool) -useAlwaysAvailable defaults to true to avoid exceptions on missing translations

    +Currently, supports two syntaxes:

    +
      +
    • +['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>] +
    • +
    • +[<language_code_string>,…] where useAlwaysAvailable defaults to true to avoid exceptions on missing translations.
    • +
    @@ -38703,7 +38722,7 @@

    Parameters

    -

    if true only the objects which the user is allowed to read are returned.

    +

    if true (default), only the objects which the user is allowed to read are returned.

    @@ -38740,7 +38759,7 @@

    SearchService.php : - 152 + 171
    @@ -38757,7 +38776,7 @@

    -
    public findContentInfo(Query $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    +
    public findContentInfo(Query $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    @@ -38802,7 +38821,7 @@

    Parameters

    $languageFilter - array<string|int, mixed> + array<string, mixed>|array<int, string> [] @@ -38810,8 +38829,14 @@

    Parameters

    Configuration for specifying prioritized languages query will be performed on. -Currently supports: array("languages" => array(,..), "useAlwaysAvailable" => bool) -useAlwaysAvailable defaults to true to avoid exceptions on missing translations

    +Currently, supports two syntaxes:

    +
      +
    • +['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>] +
    • +
    • +[<language_code_string>,…] where useAlwaysAvailable defaults to true to avoid exceptions on missing translations.
    • +
    @@ -38829,7 +38854,7 @@

    Parameters

    -

    if true (default) only the objects which is the user allowed to read are returned.

    +

    if true (default), only the objects which the user is allowed to read are returned.

    @@ -38866,7 +38891,7 @@

    SearchService.php : - 194 + 216
    @@ -38883,7 +38908,7 @@

    -
    public findLocations(LocationQuery $query[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    +
    public findLocations(LocationQuery $query[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : SearchResult
    @@ -38922,7 +38947,7 @@

    Parameters

    $languageFilter - array<string|int, mixed> + array<string, mixed>|array<int, string> [] @@ -38930,8 +38955,15 @@

    Parameters

    Configuration for specifying prioritized languages query will be performed on. -Currently supports: array("languages" => array(,..), "useAlwaysAvailable" => bool) -useAlwaysAvailable defaults to true to avoid exceptions on missing translations

    +Also used to define which field languages are loaded for the returned content. +Currently, supports two syntaxeses:

    +
      +
    • +['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>] +
    • +
    • +[<language_code_string>,…] where useAlwaysAvailable defaults to true to avoid exceptions on missing translations.
    • +
    @@ -38949,7 +38981,7 @@

    Parameters

    -

    if true only the objects which is the user allowed to read are returned.

    +

    if true (default), only the objects which the user is allowed to read are returned.

    @@ -38986,7 +39018,7 @@

    SearchService.php : - 169 + 189
    @@ -39003,7 +39035,7 @@

    -
    public findSingle(Criterion $filter[, array<string|int, mixed> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : Content
    +
    public findSingle(Criterion $filter[, array<string, mixed>|array<int, string> $languageFilter = [] ][, bool $filterOnUserPermissions = true ]) : Content
    @@ -39042,7 +39074,7 @@

    Parameters

    $languageFilter - array<string|int, mixed> + array<string, mixed>|array<int, string> [] @@ -39050,8 +39082,14 @@

    Parameters

    Configuration for specifying prioritized languages query will be performed on. -Currently supports: array("languages" => array(,..), "useAlwaysAvailable" => bool) -useAlwaysAvailable defaults to true to avoid exceptions on missing translations

    +Currently, supports two syntaxes:

    +
      +
    • +['languages' => [<language_code_string>,…], 'useAlwaysAvailable' => <bool>] +
    • +
    • +[<language_code_string>,…] where useAlwaysAvailable defaults to true to avoid exceptions on missing translations.
    • +
    @@ -39069,7 +39107,7 @@

    Parameters

    -

    if true only the objects which is the user allowed to read are returned.

    +

    if true (default), only the objects which the user is allowed to read are returned.

    @@ -39128,7 +39166,7 @@

    SearchService.php : - 179 + 199
    @@ -39232,7 +39270,7 @@

    SearchService.php : - 207 + 237
    @@ -39285,7 +39323,14 @@

    Parameters

    -

    One of CAPABILITY_* constants.

    +

    One of the CAPABILITY_* constants (only a single one, not a bitwise combination): +CAPABILITY_SCORING, +CAPABILITY_FACETS, +CAPABILITY_CUSTOM_FIELDS, +CAPABILITY_SPELLCHECK,

    +

    CAPABILITY_SUGGEST, +CAPABILITY_ADVANCED_FULLTEXT, or +CAPABILITY_AGGREGATIONS.

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Location.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Location.html index 1de5b0b9dd..f43d8941cd 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Location.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Location.html @@ -38970,7 +38970,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getContentId() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getContentId() instead.

    @@ -39006,7 +39006,7 @@

    -

    calls getContentInfo()

    +

    Calls Location::getContentInfo()

    @@ -39042,7 +39042,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getDepth() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getDepth() instead.

    @@ -39056,7 +39056,7 @@

    Location.php : - 173 + 176
    @@ -39184,7 +39184,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::isHidden() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::isHidden() instead.

    @@ -39255,7 +39255,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getId() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getId() instead.

    @@ -39293,10 +39293,6 @@

    -
    -

    Location ID.

    - -

    @@ -39330,7 +39326,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::isInvisible() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::isInvisible() instead.

    @@ -39402,7 +39398,7 @@

    -

    the id of the parent location

    +

    The ID of the parent location

    @@ -39477,7 +39473,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getPath() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getPath() instead.

    @@ -39491,11 +39487,12 @@

    Location.php : - 166 + 169
    -

    Same as {@see Location::$pathString} but as array, e.g.: <code>[ '1', '2', '4', '23' ]</code>.

    +

    The list of ancestor locations' IDs, ordered by increasing depth, +starting with '1', and ending with the current Location's ID.

    @@ -39508,13 +39505,17 @@

    -
    protected array<string|int, string> $path
    +
    protected array<int, string> $path
    +
    +

    Same as Location::$pathString but as array, e.g.: ['1', '2', '4', '23'].

    + +

    @@ -39548,7 +39549,7 @@

    -

    @deprecated 4.6.7 accessing magic getter is deprecated and will be removed in 5.0.0. Use Location::getPathString() instead.

    +

    Accessing magic getter is deprecated since 4.6.7 and will be removed in 5.0.0. Use Location::getPathString() instead.

    @@ -39566,7 +39567,7 @@

    -

    The materialized path of the location entry, eg: /1/2/.

    +

    The materialized path of the location entry, eg: /1/2/4/23/.

    @@ -39695,7 +39696,7 @@

    -

    a global unique id of the content object

    +

    A global unique ID of the content object

    @@ -39784,7 +39785,7 @@

    Location.php : - 182 + 185
    @@ -39859,7 +39860,7 @@

    Location.php : - 191 + 194
    @@ -39902,7 +39903,7 @@

    -

    the status of the location.

    +

    The status of the location.

    @@ -39923,8 +39924,8 @@

    -

    a location gets the status DRAFT on newly created content which is not published. When content is published the -location gets the status STATUS_PUBLISHED

    +

    A location gets the status Location::STATUS_DRAFT on newly created content which is not published. +When content is published the location gets the status Location::STATUS_PUBLISHED.

    @@ -39938,7 +39939,7 @@

    Location.php : - 194 + 197
    @@ -39993,7 +39994,7 @@

    -
    public __construct([array<string|int, mixed> $properties = [] ])
    +
    public __construct([array<string, mixed> $properties = [] ])
    @@ -40003,7 +40004,7 @@

    -

    Readonly properties values must be set using $properties as they are not writable anymore +

    Readonly properties values must be set using $properties as they aren't writable anymore after object has been created.

    @@ -40023,7 +40024,7 @@

    Parameters

    $properties - array<string|int, mixed> + array<string, mixed> [] @@ -40043,7 +40044,7 @@

    Location.php : - 316 + 324
    @@ -40095,7 +40096,25 @@

    Parameters

    - + +
    + Tags + + +
    +
    +
    + Deprecated +
    +
    + 4.6.7 +
    +

    accessing magic getter is deprecated and will be removed in 5.0.0.

    + +
    + +
    +

    public__isset() @@ -40104,7 +40123,7 @@

    Location.php : - 307 + 314

    @@ -40156,7 +40175,25 @@

    Parameters

    - + +
    + Tags + + +
    +
    +
    + Deprecated +
    +
    + 4.6.7 +
    +

    accessing magic getter is deprecated and will be removed in 5.0.0.

    + +
    + +
    +

    publicgetContent() @@ -40165,7 +40202,7 @@

    Location.php : - 233 + 236

    @@ -40201,7 +40238,7 @@

    Location.php : - 215 + 218
    @@ -40237,7 +40274,7 @@

    Location.php : - 201 + 204
    @@ -40274,7 +40311,7 @@

    Location.php : - 302 + 308
    @@ -40310,7 +40347,7 @@

    Location.php : - 210 + 213
    @@ -40346,7 +40383,7 @@

    Location.php : - 208 + 211
    @@ -40383,11 +40420,12 @@

    Location.php : - 274 + 280
    -

    Same as {@see Location::getPathString()} but as array, e.g.: <code>[ '1', '2', '4', '23' ]</code>.

    +

    The list of ancestor locations' IDs, ordered by increasing depth, +starting with 1, and ending with the current Location's ID.

    @@ -40400,7 +40438,7 @@

    @@ -40409,8 +40447,12 @@

    +
    +

    Same as Location::getPathString() but as array, e.g.: ['1', '2', '4', '23'].

    + +

    Return values

    -

    array<string|int, string>

    +

    array<int, string>

    @@ -40420,12 +40462,12 @@

    Location.php : - 264 + 267

    The path to the Location represented by the current instance, -e.g. /1/2/4/23 where 23 is current id.

    +e.g. /1/2/4/23/ where 23 is current ID.

    -
    public getPath() : array<string|int, string>
    +
    public getPath() : array<int, string>
    @@ -40458,7 +40500,7 @@

    Location.php : - 245 + 248
    @@ -40513,7 +40555,7 @@

    Location.php : - 225 + 228
    @@ -40550,7 +40592,7 @@

    Location.php : - 297 + 303
    @@ -40587,7 +40629,7 @@

    Location.php : - 289 + 295
    @@ -40625,11 +40667,11 @@

    ValueObject.php : - 53 + 54
    -

    Function where list of properties are returned.

    +

    Returns list of available properties' names.

    @@ -40642,7 +40684,7 @@

    @@ -40652,7 +40694,7 @@

    -

    Used by attributes(), override to add dynamic properties

    +

    Override to add dynamic properties.

    Parameters

    @@ -40671,7 +40713,7 @@

    Parameters

    $dynamicProperties
    -
    protected getProperties([array<string|int, mixed> $dynamicProperties = [] ]) : array<string|int, mixed>
    +
    protected getProperties([array<int, string> $dynamicProperties = [] ]) : array<int, string>
    - array<string|int, mixed> + array<int, string> [] @@ -40687,7 +40729,7 @@

    Parameters

    Return values

    -

    array<string|int, mixed>

    +

    array<int, string>

    Tags diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-DateMetadata.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-DateMetadata.html index bce416e2fc..419a78e767 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-DateMetadata.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-DateMetadata.html @@ -38338,19 +38338,24 @@

    -

    Supported Operators: -EQ, IN: matches content whose date is or belongs to a list of timestamps -GT, GTE: matches content whose date is greater than/greater than or equals the given timestamp -LT, LTE: matches content whose date is lower than/lower than or equals the given timestamp -BETWEEN: matches content whose date is between (included) the TWO given timestamps

    -

    Example: - -$createdCriterion = new Criterion\DateMetadata( -Criterion\DateMetadata::CREATED, -Operator::GTE, -strtotime( 'yesterday' ) +

    Supported Operators:

    +
      +
    • +EQ, IN: matches content whose date is or belongs to a list of timestamps.
    • +
    • +GT, GTE: matches content whose date is greater than/greater than or equals the given timestamp.
    • +
    • +LT, LTE: matches content whose date is lower than/lower than or equals the given timestamp.
    • +
    • +BETWEEN: matches content whose date is between TWO (included) given timestamps.
    • +
    +

    The following example is a criterion for contents created yesterday or today:

    +
    $createdCriterion = new Criterion\DateMetadata(
    +    Criterion\DateMetadata::CREATED,
    +    Criterion\Operator::GTE,
    +    strtotime('yesterday')
     );
    -

    +
    @@ -38468,7 +38473,7 @@

    DateMetadata.php : - 48 + 50

    @@ -38499,11 +38504,11 @@

    DateMetadata.php : - 46 + 48
    -

    (applies to TrashService::findTrashItems only).

    +

    To search for contents based on when they have been sent to trash.

    @@ -38523,6 +38528,10 @@

    +
    +

    Applies to TrashService::findTrashItems() only.

    + +

    @@ -38683,11 +38692,11 @@

    DateMetadata.php : - 64 + 66
    -

    Creates a new DateMetadata criterion on $metadata.

    +

    Creates a new DateMetadata criterion.

    @@ -38732,7 +38741,7 @@

    Parameters

    @@ -38833,13 +38842,16 @@

    Returns the combination of the Criterion's supported operator/value, as an array of Specifications objects

    - -// IN and EQ are supported +
    // IN and EQ are supported
     return [
         // The EQ operator expects a single value, either as an integer or a string
         new Specifications(
    @@ -38854,11 +38866,11 @@ 

    Specifications::TYPE_INTEGER | Specifications::TYPE_STRING ) ] - +

    Return values

    -

    array<string|int, Specifications>

    +

    array<int, Specifications>

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-Operator-Specifications.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-Operator-Specifications.html index c808e7d8a8..78d6263a86 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-Operator-Specifications.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-Operator-Specifications.html @@ -38325,7 +38325,7 @@

    Specifications.php : - 18 + 16
    @@ -38336,25 +38336,11 @@

    -

    Instances of this class are returned in an array by the Criterion::getSpecifications() method

    +

    Instances of this class are returned in an array by the Criterion::getSpecifications() method.

    - -

    - Tags - - -
    -
    -
    - See -
    -
    - Criterion::getSpecifications() - -
    -
    + @@ -38375,7 +38361,7 @@

    Specifications.php : - 23 + 21
    @@ -38407,7 +38393,7 @@

    Specifications.php : - 21 + 19
    @@ -38439,7 +38425,7 @@

    Specifications.php : - 30 + 28
    @@ -38471,7 +38457,7 @@

    Specifications.php : - 26 + 24
    @@ -38503,7 +38489,7 @@

    Specifications.php : - 28 + 26
    @@ -38543,7 +38529,7 @@

    Specifications.php : - 35 + 33
    @@ -38578,7 +38564,7 @@

    Specifications.php : - 72 + 70
    @@ -38639,7 +38625,7 @@

    Specifications.php : - 48 + 46
    @@ -38700,7 +38686,7 @@

    Specifications.php : - 59 + 57
    @@ -38767,7 +38753,7 @@

    Specifications.php : - 88 + 86
    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-UserMetadata.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-UserMetadata.html index e77d64feeb..2e07c9d774 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-UserMetadata.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion-UserMetadata.html @@ -38340,16 +38340,18 @@

    -

    Supported Operators: -EQ, IN: Matches the provided user ID(s) against the user IDs in the database

    -

    Example: - -$createdCriterion = new Criterion\UserMetadata( -Criterion\UserMetadata::OWNER, -Operator::IN, -array( 10, 14 ) +

    Supported Operators:

    +
      +
    • +EQ, IN: Matches the provided user ID(s) against the user IDs in the database.
    • +
    +

    The following example is a criterion for contents owned by a user with ID 10 or 14:

    +
    $createdCriterion = new Criterion\UserMetadata(
    +    Criterion\UserMetadata::OWNER,
    +    Criterion\Operator::IN,
    +    [10, 14]
     );
    -

    +
    @@ -38626,7 +38628,7 @@

    -

    Creates a new UserMetadata criterion on $metadata.

    +

    Creates a new UserMetadata criterion.

    -

    One of DateMetadata::CREATED, DateMetadata::MODIFIED or DateMetadata::TRASHED (applies to TrashService::findTrashItems only)

    +

    One of DateMetadata::CREATED, DateMetadata::MODIFIED, or DateMetadata::TRASHED (applies to TrashService::findTrashItems() only)

    @@ -38750,7 +38759,7 @@

    Parameters

    -

    One of the Operator constants

    +

    One of the Operator constants

    @@ -38803,7 +38812,7 @@

    DateMetadata.php : - 76 + 78
    @@ -38820,7 +38829,7 @@

    -
    public getSpecifications() : array<string|int, Specifications>
    +
    public getSpecifications() : array<int, Specifications>
    @@ -38671,7 +38673,7 @@

    Parameters

    @@ -38772,13 +38774,16 @@

    Returns the combination of the Criterion's supported operator/value, as an array of Specifications objects

    - -// IN and EQ are supported +
    // IN and EQ are supported
     return [
         // The EQ operator expects a single value, either as an integer or a string
         new Specifications(
    @@ -38793,11 +38798,11 @@ 

    Specifications::TYPE_INTEGER | Specifications::TYPE_STRING ) ] - +

    Return values

    -

    array<string|int, Specifications>

    +

    array<int, Specifications>

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion.html index 128f62877a..336f39a5dd 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-Content-Query-Criterion.html @@ -38501,11 +38501,11 @@

    Criterion.php : - 60 + 62
    -

    Performs operator validation based on the Criterion specifications returned by {@see getSpecifications()}.

    +

    Creates a Criterion.

    -

    One of UserMetadata::OWNER, UserMetadata::GROUP or UserMetadata::MODIFIED

    +

    One of UserMetadata::OWNER, UserMetadata::GROUP, or UserMetadata::MODIFIER.

    @@ -38689,7 +38691,7 @@

    Parameters

    -

    The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, Operator::EQ if it is not.

    +

    The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, Operator::EQ if it isn't.

    @@ -38707,7 +38709,7 @@

    Parameters

    -

    The match value, either as an array of as a single value, depending on the operator

    +

    The match value, either as an array of as a single value, depending on the operator.

    @@ -38759,7 +38761,7 @@

    -
    public getSpecifications() : array<string|int, Specifications>
    +
    public getSpecifications() : array<int, Specifications>
    @@ -38518,7 +38518,7 @@

    @@ -38527,6 +38527,10 @@

    +
    +

    Performs operator validation based on the Criterion specifications returned by Criterion::getSpecifications().

    + +

    Parameters

    -
    public __construct(string|null $target, string|null $operator, array<string|int, scalar>|scalar $value[, Value|null $valueData = null ])
    +
    public __construct(string|null $target, string|null $operator, array<int, scalar>|scalar $value[, Value|null $valueData = null ])
    @@ -38568,8 +38572,8 @@

    Parameters

    @@ -38662,13 +38666,16 @@

    Returns the combination of the Criterion's supported operator/value, as an array of Specifications objects

    - -// IN and EQ are supported +
    // IN and EQ are supported
     return [
         // The EQ operator expects a single value, either as an integer or a string
         new Specifications(
    @@ -38683,11 +38690,11 @@ 

    Specifications::TYPE_INTEGER | Specifications::TYPE_STRING ) ] - +

    Return values

    -

    array<string|int, Specifications>

    +

    array<int, Specifications>

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-ValueObject.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-ValueObject.html index 7d9fb9fe08..c1be9b3f85 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-ValueObject.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Repository-Values-ValueObject.html @@ -38321,9 +38321,9 @@

    -

    Supports readonly properties by marking them as protected. +

    Supports read-only properties by marking them as protected. In this case they will only be writable using constructor, and need to be documented -using property-read <$var> annotation in class doc in addition to inline property doc. +using @property-read <type> <$var> annotation in class doc in addition to inline property doc. Writable properties must be public and must be documented inline.

    @@ -38370,7 +38370,7 @@

    @@ -38380,7 +38380,7 @@

    -

    Readonly properties values must be set using $properties as they are not writable anymore +

    Readonly properties values must be set using $properties as they aren't writable anymore after object has been created.

    @@ -38400,7 +38400,7 @@

    Parameters

    $properties
    -

    The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, -Operator::EQ if it is not.

    +

    The operator the Criterion uses. If null is given, will default to Operator::IN if $value is an array, +Operator::EQ if it isn't.

    @@ -38580,7 +38584,7 @@

    Parameters

    $value
    - array<string|int, scalar>|scalar + array<int, scalar>|scalar - @@ -38632,7 +38636,7 @@

    Criterion.php : - 146 + 148
    @@ -38649,7 +38653,7 @@

    -
    public abstract getSpecifications() : array<string|int, Specifications>
    +
    public abstract getSpecifications() : array<int, Specifications>
    -
    public __construct([array<string|int, mixed> $properties = [] ])
    +
    public __construct([array<string, mixed> $properties = [] ])
    - array<string|int, mixed> + array<string, mixed> [] @@ -38420,11 +38420,11 @@

    ValueObject.php : - 53 + 54
    -

    Function where list of properties are returned.

    +

    Returns list of available properties' names.

    @@ -38437,7 +38437,7 @@

    @@ -38447,7 +38447,7 @@

    -

    Used by attributes(), override to add dynamic properties

    +

    Override to add dynamic properties.

    Parameters

    @@ -38466,7 +38466,7 @@

    Parameters

    $dynamicProperties
    -
    protected getProperties([array<string|int, mixed> $dynamicProperties = [] ]) : array<string|int, mixed>
    +
    protected getProperties([array<int, string> $dynamicProperties = [] ]) : array<int, string>
    - array<string|int, mixed> + array<int, string> [] @@ -38482,7 +38482,7 @@

    Parameters

    Return values

    -

    array<string|int, mixed>

    +

    array<int, string>

    Tags diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Capable.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Capable.html index 98898224ca..52a795bbbf 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Capable.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Core-Search-Capable.html @@ -5,7 +5,7 @@ Capable | PHP API Reference (Ibexa Documentation) - + @@ -38305,15 +38305,19 @@

    Capable.php : - 16 + 18
    Interface

    -

    Capability interface for search engines needed for {@see \Ibexa\Contracts\Core\Repository\SearchService::supports()}.

    +

    Capability interface for search engines.

    +
    +

    Capability interface for search engines needed for SearchService::supports().

    + +
    @@ -38339,7 +38343,7 @@

    Capable.php : - 25 + 27
    @@ -38388,7 +38392,7 @@

    Parameters

    -

    One of \Ibexa\Contracts\Core\Repository\SearchService::CAPABILITY_* constants.

    +

    One of SearchService::CAPABILITY_* constants.

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeCreatePaymentEvent.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeCreatePaymentEvent.html index e205053c3a..90c641fc51 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeCreatePaymentEvent.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeCreatePaymentEvent.html @@ -38474,12 +38474,11 @@

    BeforeCreatePaymentEvent.php : - 74 + 76
    -

    Returns the original payment create struct passed to -{@see \Ibexa\Contracts\Payment\PaymentServiceInterface::createPayment()} method.

    +

    Returns the original payment create struct.

    @@ -38501,6 +38500,11 @@

    +
    +

    Returns the original payment create struct passed to +PaymentServiceInterface::createPayment() method.

    + +

    Return values

    PaymentCreateStruct

    @@ -38512,11 +38516,11 @@

    BeforeCreatePaymentEvent.php : - 84 + 88
    -

    Returns overridden {@see \Ibexa\Contracts\Payment\PaymentServiceInterface::createPayment()} result.

    +

    Returns overridden payment result.

    @@ -38538,6 +38542,10 @@

    +
    +

    Returns overridden PaymentServiceInterface::createPayment() result.

    + +

    Return values

    PaymentInterface

    @@ -38553,7 +38561,7 @@
    UnexpectedValueException
    -

    if the payment result is not set

    +

    if the payment result is not set.

    @@ -38567,12 +38575,11 @@

    BeforeCreatePaymentEvent.php : - 108 + 116
    -

    Returns whether the {@see \Ibexa\Contracts\Payment\PaymentServiceInterface::createPayment()} result has been -overridden.

    +

    Returns if payment result is an override.

    @@ -38594,6 +38601,11 @@

    +
    +

    Returns whether the PaymentServiceInterface::createPayment() result has been +overridden.

    + +

    Return values

    bool

    @@ -38641,12 +38653,11 @@

    BeforeCreatePaymentEvent.php : - 99 + 105
    -

    Sets the payment result that will be returned by -{@see \Ibexa\Contracts\Payment\PaymentServiceInterface::createPayment()}.

    +

    Sets the payment result.

    @@ -38668,6 +38679,11 @@

    +
    +

    Sets the payment result that will be returned by +PaymentServiceInterface::createPayment().

    + +

    Parameters

    diff --git a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeUpdatePaymentEvent.html b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeUpdatePaymentEvent.html index 4586a9aa6f..b4c606481d 100644 --- a/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeUpdatePaymentEvent.html +++ b/docs/api/php_api/php_api_reference/classes/Ibexa-Contracts-Payment-Payment-Event-BeforeUpdatePaymentEvent.html @@ -38636,12 +38636,11 @@

    BeforeUpdatePaymentEvent.php : - 142 + 144
    -

    Returns whether the {@see \Ibexa\Contracts\Payment\PaymentServiceInterface::updatePayment()} result has been -overridden.

    +

    Returns if payment result is an override.

    @@ -38663,6 +38662,11 @@

    +
    +

    Returns whether the PaymentServiceInterface::updatePayment() result has been +overridden.

    + +

    Return values

    bool