17 lines
327 B
PHP
17 lines
327 B
PHP
<?php declare(strict_types=1);
|
|
|
|
namespace Lubiana\CodeQuality;
|
|
|
|
/** @deprecated use LubiSetList */
|
|
final class SetList
|
|
{
|
|
/**
|
|
* @deprecated use LubiSetList::RECTOR
|
|
*/
|
|
public const RECTOR = LubiSetList::RECTOR;
|
|
|
|
/**
|
|
* @deprecated use LubiSetList::ECS
|
|
*/
|
|
public const ECS = LubiSetList::ECS;
|
|
}
|