rector/rules-tests/Php81/Rector/Class_/ConstantListClassToEnumRector/Fixture/skip_differnet_type.php.inc

11 lines
185 B
PHP

<?php
namespace Rector\Tests\Php81\Rector\Class_\ConstantListClassToEnumRector\Fixture;
final class SkipDifferentType
{
public const LEFT = 'left';
public const RIGHT = 5;
}