for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Budgegeria\IntlSort\Collator;
class Configuration
{
public const NULL_VALUES_FIRST = 1;
public const NULL_VALUES_LAST = 2;
/** @phpstan-var self::NULL_VALUES_*|null */
private int|null $nullableSort = null;
/** @phpstan-param self::NULL_VALUES_*|null $value */
public function setNullableSort(int|null $value): void
$this->nullableSort = $value;
}
/** @phpstan-return self::NULL_VALUES_*|null */
public function getNullableSort(): int|null
return $this->nullableSort;