UnicodeCharacterPropertyInterface.php in Search API 8
File
src/Plugin/search_api/processor/Resources/UnicodeCharacterPropertyInterface.phpView source
<?php
namespace Drupal\search_api\Plugin\search_api\processor\Resources;
/**
* Defines an interface for classes representing a Unicode character property.
*/
interface UnicodeCharacterPropertyInterface {
/**
* Returns a regular expression matching this character class.
*
* @return string
* A PCRE regular expression.
*/
public static function getRegularExpression();
}
Interfaces
Name | Description |
---|---|
UnicodeCharacterPropertyInterface | Defines an interface for classes representing a Unicode character property. |