문법에 맞지 않는 괄호 삭제

This commit is contained in:
Min-Soo Kim 2020-12-22 16:57:40 +09:00
parent 87ef4f1e8e
commit 32d734059d

View file

@ -436,7 +436,7 @@ class VariableBase
* @param string $value * @param string $value
* @return object * @return object
*/ */
private function _parseSearchKeywords() ($value) private function _parseSearchKeywords($value)
{ {
// parse the value (text) // parse the value (text)
$keywords = preg_split('/("[^"]*")|[\s,]+/', trim($value), 10, \PREG_SPLIT_NO_EMPTY | \PREG_SPLIT_DELIM_CAPTURE); $keywords = preg_split('/("[^"]*")|[\s,]+/', trim($value), 10, \PREG_SPLIT_NO_EMPTY | \PREG_SPLIT_DELIM_CAPTURE);