search_api-8.x-1.15/src/Plugin/search_api/processor/Resources/Zl.php
src/Plugin/search_api/processor/Resources/Zl.php
<?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 } }