mirror of
https://github.com/rectorphp/rector.git
synced 2025-01-18 22:08:00 +01:00
aa2cb1b997
0eba231b07
[PHP 8.1] Move ConstantListClassToEnumRector to PHP 8.1 (#2444)
25 lines
371 B
PHP
25 lines
371 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Php80\Enum;
|
|
|
|
final class MatchKind
|
|
{
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const NORMAL = 'normal';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const ASSIGN = 'assign';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const RETURN = 'return';
|
|
/**
|
|
* @var string
|
|
*/
|
|
public const THROW = 'throw';
|
|
}
|