rector/rules/CodingStyle/Enum/PreferenceSelfThis.php
Tomas Votruba 46cf4c1774 Updated Rector to commit 0888a92985f8018f486798af0f33928f221e7f0f
0888a92985 [CodeQuality] Skip class with constructor parameter for ClassConstFetch on CallableThisArraToAnonymousFunctionRector (#581)
2021-08-03 10:22:54 +00:00

24 lines
494 B
PHP

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