rector/rules/CodingStyle/Enum/PreferenceSelfThis.php
Tomas Votruba 65ad60c6e9 Updated Rector to commit 2623e6773c
2623e6773c Bump branch-alias from 0.10 to 0.11 (#723)
2021-08-20 10:06:28 +00:00

24 lines
494 B
PHP

<?php
declare (strict_types=1);
namespace Rector\CodingStyle\Enum;
use RectorPrefix20210820\MyCLabs\Enum\Enum;
/**
* @method static PreferenceSelfThis PREFER_THIS()
* @method static PreferenceSelfThis PREFER_SELF()
*/
final class PreferenceSelfThis extends \RectorPrefix20210820\MyCLabs\Enum\Enum
{
/**
* @api
* @var string
*/
private const PREFER_THIS = 'prefer_this';
/**
* @api
* @var string
*/
private const PREFER_SELF = 'prefer_self';
}