Вход Регистрация
Файл: vendor/ramsey/uuid/src/DeprecatedUuidInterface.php
Строк: 197
<?php

/**
 * This file is part of the ramsey/uuid library
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 *
 * @copyright Copyright (c) Ben Ramsey <ben@benramsey.com>
 * @license http://opensource.org/licenses/MIT MIT
 */

declare(strict_types=1);

namespace 
RamseyUuid;

use 
DateTimeInterface;
use 
RamseyUuidConverterNumberConverterInterface;

/**
 * This interface encapsulates deprecated methods for ramsey/uuid
 *
 * @psalm-immutable
 */
interface DeprecatedUuidInterface
{
    
/**
     * @deprecated This method will be removed in 5.0.0. There is no alternative
     *     recommendation, so plan accordingly.
     */
    
public function getNumberConverter(): NumberConverterInterface;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance.
     *
     * @return string[]
     */
    
public function getFieldsHex(): array;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getClockSeqHiAndReserved()}.
     */
    
public function getClockSeqHiAndReservedHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getClockSeqLow()}.
     */
    
public function getClockSeqLowHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getClockSeq()}.
     */
    
public function getClockSequenceHex(): string;

    
/**
     * @deprecated In ramsey/uuid version 5.0.0, this will be removed from the
     *     interface. It is available at {@see UuidV1::getDateTime()}.
     */
    
public function getDateTime(): DateTimeInterface;

    
/**
     * @deprecated This method will be removed in 5.0.0. There is no direct
     *     alternative, but the same information may be obtained by splitting
     *     in half the value returned by {@see UuidInterface::getHex()}.
     */
    
public function getLeastSignificantBitsHex(): string;

    
/**
     * @deprecated This method will be removed in 5.0.0. There is no direct
     *     alternative, but the same information may be obtained by splitting
     *     in half the value returned by {@see UuidInterface::getHex()}.
     */
    
public function getMostSignificantBitsHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getNode()}.
     */
    
public function getNodeHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getTimeHiAndVersion()}.
     */
    
public function getTimeHiAndVersionHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getTimeLow()}.
     */
    
public function getTimeLowHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getTimeMid()}.
     */
    
public function getTimeMidHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getTimestamp()}.
     */
    
public function getTimestampHex(): string;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getVariant()}.
     */
    
public function getVariant(): ?int;

    
/**
     * @deprecated Use {@see UuidInterface::getFields()} to get a
     *     {@see FieldsInterface} instance. If it is a
     *     {@see RamseyUuidRfc4122FieldsInterface} instance, you may call
     *     {@see RamseyUuidRfc4122FieldsInterface::getVersion()}.
     */
    
public function getVersion(): ?int;
}
Онлайн: 1
Реклама