Skip to content
Snippets Groups Projects

Compare revisions

Changes are shown as if the source revision was being merged into the target revision. Learn more about comparing revisions.

Source

Select target project
No results found

Target

Select target project
No results found
Show changes
Commits on Source (2)
......@@ -10,7 +10,7 @@ class QueryMatch implements Esable
{
public function __construct(
private readonly string $key,
private readonly string $value,
private readonly mixed $value,
) {
}
......
......@@ -10,7 +10,7 @@ class Search
{
public function __construct(
private readonly Property $property,
private readonly string $value,
private readonly mixed $value,
) {
}
......@@ -19,7 +19,7 @@ class Search
return $this->property;
}
public function getValue(): string
public function getValue(): mixed
{
return $this->value;
}
......
......@@ -8,11 +8,11 @@ final class Terms implements Esable
{
/**
* @param string $key
* @param string|float|array<string|float> $value
* @param string|float|bool|array<string|float> $value
*/
public function __construct(
private string $key,
private string|float|array $value
private mixed $value
) {
}
......