File: /home/cafsindia/lead_cafsinfotech_in/vendor/api-platform/core/src/Elasticsearch/State/Options.php
<?php
/*
* This file is part of the API Platform project.
*
* (c) Kévin Dunglas <dunglas@gmail.com>
*
* For the full copyright and license information, please view the LICENSE
* file that was distributed with this source code.
*/
declare(strict_types=1);
namespace ApiPlatform\Elasticsearch\State;
use ApiPlatform\State\OptionsInterface;
class Options implements OptionsInterface
{
public function __construct(
protected ?string $index = null,
/**
* @deprecated this parameter is not used anymore
*/
protected ?string $type = null,
) {
}
public function getIndex(): ?string
{
return $this->index;
}
public function withIndex(?string $index): self
{
$self = clone $this;
$self->index = $index;
return $self;
}
public function getType(): ?string
{
return $this->type;
}
public function withType(?string $type): self
{
$self = clone $this;
$self->type = $type;
return $self;
}
}