mirror of
https://github.com/OpenXE-org/OpenXE.git
synced 2024-11-15 12:37:14 +01:00
49 lines
1017 B
PHP
49 lines
1017 B
PHP
<?php
|
|
|
|
namespace Xentral\Widgets\SuperSearch\Query;
|
|
|
|
use Xentral\Widgets\SuperSearch\Exception\InvalidArgumentException;
|
|
|
|
final class SearchQuery
|
|
{
|
|
/** @var string $searchTerm */
|
|
private $searchTerm;
|
|
|
|
/** @var array $searchWords */
|
|
private $searchWords = null;
|
|
|
|
/**
|
|
* @param string $searchTerm
|
|
*
|
|
* @throws InvalidArgumentException
|
|
*/
|
|
public function __construct($searchTerm)
|
|
{
|
|
if (empty($searchTerm)) {
|
|
throw new InvalidArgumentException('Parameter "searchTerm" is empty.');
|
|
}
|
|
|
|
$this->searchTerm = trim($searchTerm);
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
public function getSearchTerm()
|
|
{
|
|
return $this->searchTerm;
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function getSearchWords()
|
|
{
|
|
if ($this->searchWords === null) {
|
|
$this->searchWords = (array)preg_split('/([\s]+)/um', $this->searchTerm, -1, PREG_SPLIT_NO_EMPTY);
|
|
}
|
|
|
|
return $this->searchWords;
|
|
}
|
|
}
|