rector/rules/CodingStyle/Enum/PreferenceSelfThis.php
Tomas Votruba 54f8d6dc33 Updated Rector to commit da4d598bf0fc20b831e138407263b82645109bdf
da4d598bf0 [PHPStan 1.0] resolve FunctionReflection getFileName() from main interface (#1117)
2021-10-31 15:30:19 +00:00

24 lines
494 B
PHP

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