You are here

Zl.php in Search API 8

File

src/Plugin/search_api/processor/Resources/Zl.php
View 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
  }

}

Classes

Namesort descending Description
Zl Represents characters of the Unicode category "Zl" ("Separator, Line").