search_api-8.x-1.15/src/Plugin/search_api/processor/Resources/Pf.php
src/Plugin/search_api/processor/Resources/Pf.php
<?php
namespace Drupal\search_api\Plugin\search_api\processor\Resources;
/**
* Represents characters of the category "Pf" ("Punctuation, Final quote").
*/
class Pf implements UnicodeCharacterPropertyInterface {
/**
* {@inheritdoc}
*/
public static function getRegularExpression() {
// phpcs:disable
return
'\x{00BB}\x{2019}\x{201D}\x{203A}\x{2E03}\x{2E05}\x{2E0A}' .
'\x{2E0D}\x{2E1D}\x{2E21}';
// phpcs:enable
}
}
