rector/rules/Php80/Enum/MatchKind.php
Tomas Votruba 0ead874fad Updated Rector to commit 75c06eab69f50725add0c315bc6dfaf4a7b2f5c5
75c06eab69 Fix match static method name in annotation (#446)
2021-07-19 05:06:26 +00:00

32 lines
622 B
PHP

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