Newer
Older
<?php
declare(strict_types=1);
use IQDEV\ElasticSearch\Document\Property\Property;
class Search
{
public function __construct(
private readonly Property $property,
) {
}
public function getProperty(): Property
{
return $this->property;
}
{
return $this->value;
}
}