mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-10 18:51:20 +01:00
1099eab862
36fc840488
Trigger notification (#1027)
32 lines
622 B
PHP
32 lines
622 B
PHP
<?php
|
|
|
|
declare (strict_types=1);
|
|
namespace Rector\Php80\Enum;
|
|
|
|
use RectorPrefix20211020\MyCLabs\Enum\Enum;
|
|
/**
|
|
* @method static MatchKind NORMAL()
|
|
* @method static MatchKind ASSIGN()
|
|
* @method static MatchKind RETURN()
|
|
* @method static MatchKind THROW()
|
|
*/
|
|
final class MatchKind extends \RectorPrefix20211020\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';
|
|
}
|