mirror of
https://github.com/rectorphp/rector.git
synced 2025-02-09 01:21:17 +01:00
da4d598bf0
[PHPStan 1.0] resolve FunctionReflection getFileName() from main interface (#1117)
24 lines
494 B
PHP
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';
|
|
}
|