ï»¿PK       ! Ñ§YNh  h    PreferenceSelfThis.phpnu È¯Ýí        <?php

declare (strict_types=1);
namespace Rector\CodingStyle\Enum;

final class PreferenceSelfThis
{
    /**
     * @api
     * @var string
     */
    public const PREFER_THIS = 'prefer_this';
    /**
     * @api
     * @var string
     */
    public const PREFER_SELF = 'prefer_self';
    /**
     * @api
     * @deprecated Use direct constant
     */
    public static function PREFER_THIS() : string
    {
        return self::PREFER_THIS;
    }
    /**
     * @api
     * @deprecated Use direct constant
     */
    public static function PREFER_SELF() : string
    {
        return self::PREFER_SELF;
    }
}
PK       ! Ê8/  /    ObjectReference.phpnu È¯Ýí        <?php

declare (strict_types=1);
namespace Rector\Core\Enum;

final class ObjectReference
{
    /**
     * @var string
     */
    public const SELF = 'self';
    /**
     * @var string
     */
    public const PARENT = 'parent';
    /**
     * @var string
     */
    public const STATIC = 'static';
}
PK         ! Ñ§YNh  h                  PreferenceSelfThis.phpnu È¯Ýí        PK         ! Ê8/  /              ®  ObjectReference.phpnu È¯Ýí        PK      ©     