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

Open in your IDE?
  1. <?php
  2. /*
  3.  * This file has been created by developers from BitBag.
  4.  * Feel free to contact us once you face any issues or want to start
  5.  * another great project.
  6.  * You can find more information about us on https://bitbag.io and write us
  7.  * an email on hello@bitbag.io.
  8.  */
  9. declare(strict_types=1);
  10. namespace BitBag\SyliusElasticsearchPlugin\Model;
  11. class SearchBox
  12. {
  13.     private ?string $query null;
  14.     public function getQuery(): ?string
  15.     {
  16.         return $this->query;
  17.     }
  18.     public function setQuery(?string $query): void
  19.     {
  20.         $this->query $query;
  21.     }
  22. }