php-src/ext/intl/collator/collator.stub.php
Máté Kocsis 186612e4d7
Improve parameter names in ext/intl
Closes GH-6309
2020-10-12 18:06:45 +02:00

86 lines
1.8 KiB
PHP

<?php
/** @generate-function-entries */
class Collator
{
public function __construct(string $locale) {}
/**
* @return Collator|null
* @alias collator_create
*/
public static function create(string $locale) {}
/**
* @return int|false
* @alias collator_compare
*/
public function compare(string $string1, string $string2) {}
/**
* @return bool
* @alias collator_sort
*/
public function sort(array &$array, int $flags = Collator::SORT_REGULAR) {}
/**
* @return bool
* @alias collator_sort_with_sort_keys
*/
public function sortWithSortKeys(array &$array) {}
/**
* @return bool
* @alias collator_asort
*/
public function asort(array &$array, int $flags = Collator::SORT_REGULAR) {}
/**
* @return int|false
* @alias collator_get_attribute
*/
public function getAttribute(int $attribute) {}
/**
* @return bool
* @alias collator_set_attribute
*/
public function setAttribute(int $attribute, int $value) {}
/**
* @return int
* @alias collator_get_strength
*/
public function getStrength() {}
/**
* @return bool
* @alias collator_set_strength
*/
public function setStrength(int $strength) {}
/**
* @return string|false
* @alias collator_get_locale
*/
public function getLocale(int $type) {}
/**
* @return int|false
* @alias collator_get_error_code
*/
public function getErrorCode() {}
/**
* @return string|false
* @alias collator_get_error_message
*/
public function getErrorMessage() {}
/**
* @return string|false
* @alias collator_get_sort_key
*/
public function getSortKey(string $string) {}
}