Zl.php in Search API 8
File
src/Plugin/search_api/processor/Resources/Zl.phpView source
<?php
namespace Drupal\search_api\Plugin\search_api\processor\Resources;
/**
* Represents characters of the Unicode category "Zl" ("Separator, Line").
*/
class Zl implements UnicodeCharacterPropertyInterface {
/**
* {@inheritdoc}
*/
public static function getRegularExpression() {
// phpcs:disable
return '\\x{2028}';
// phpcs:enable
}
}