+ break;
+ 'S': // tokens for classification terms (special phrases)
+ if ($aWord['class'] === null || $aWord['type'] === null
+ || $aWord['word'] === null
+ || strpos($sNormQuery, $aWord['word']) === false
+ ) {
+ continue;
+ }
+ $oToken = new Token\SpecialTerm(
+ $iId,
+ $aWord['class'],
+ $aWord['type'],
+ $aWord['op'] ? Operator::NEAR : Operator::NONE
+ );
+ break;