vendor/bitbag/elasticsearch-plugin/src/Model/SearchBox.php line 13

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file was created by developers working at BitBag
  4.  * Do you need more information about us and what we do? Visit our https://bitbag.io website!
  5.  * We are hiring developers from all over the world. Join us and start your new, exciting adventure and become part of us: https://bitbag.io/career
  6. */
  7. declare(strict_types=1);
  8. namespace BitBag\SyliusElasticsearchPlugin\Model;
  9. class SearchBox
  10. {
  11.     /** @var string|null */
  12.     private $query;
  13.     public function getQuery(): ?string
  14.     {
  15.         return $this->query;
  16.     }
  17.     public function setQuery(?string $query): void
  18.     {
  19.         $this->query $query;
  20.     }
  21. }