mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-15 13:25:30 +01:00
0888a92985
[CodeQuality] Skip class with constructor parameter for ClassConstFetch on CallableThisArraToAnonymousFunctionRector (#581)
24 lines
494 B
PHP
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';
|
|
}
|