rector/rules/Php80/Enum/MatchKind.php
Tomas Votruba a23b777a9a Updated Rector to commit 3a96b9097d6fbc29085210f2d85dd5d95755ef31
3a96b9097d [DeadCode] Skip fluent return  on RemoveEmptyMethodCallRector (#521)
2021-07-27 11:16:44 +00:00

32 lines
622 B
PHP

<?php
declare (strict_types=1);
namespace Rector\Php80\Enum;
use RectorPrefix20210727\MyCLabs\Enum\Enum;
/**
* @method static MatchKind NORMAL()
* @method static MatchKind ASSIGN()
* @method static MatchKind RETURN()
* @method static MatchKind THROW()
*/
final class MatchKind extends \RectorPrefix20210727\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';
}