rector/rules/Php80/Enum/MatchKind.php
Tomas Votruba 8883574049 Updated Rector to commit 6f1f047087a496a41745c1ea994273e3bc8dcdb4
6f1f047087 add RenameParamValueObjectInterface to trusted downgrade widening types
2021-07-09 23:00:32 +00:00

32 lines
622 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\Enum;
use RectorPrefix20210709\MyCLabs\Enum\Enum;
/**
* @method static MatchKind NORMAL()
* @method static MatchKind ASSIGN()
* @method static MatchKind RETURN()
* @method static MatchKind THROW()
*/
final class MatchKind extends \RectorPrefix20210709\MyCLabs\Enum\Enum
{
/**
* @var string
*/
private const NORMAL = 'normal';
/**
* @var string
*/
private const ASSIGN = 'assign';
/**
* @var string
*/
private const RETURN = 'return';
/**
* @var string
*/
private const THROW = 'throw';
}