Вход Регистрация
Файл: vendor/symfony/uid/HashableInterface.php
Строк: 43
<?php

/*
 * This file is part of the Symfony package.
 *
 * (c) Fabien Potencier <fabien@symfony.com>
 *
 * For the full copyright and license information, please view the LICENSE
 * file that was distributed with this source code.
 */

namespace SymfonyComponentUid;

if (
interface_exists(DsKey::class)) {
    
/**
     * @internal
     */
    
interface HashableInterface extends DsKey
    
{
        public function 
equals(mixed $other): bool;

        public function 
hash(): string;
    }
} elseif (
interface_exists(DsHashable::class)) {
    
/**
     * @internal
     */
    
interface HashableInterface extends DsHashable
    
{
        public function 
hash(): string;
    }
} else {
    
/**
     * @internal
     */
    
interface HashableInterface
    
{
        public function 
equals(mixed $other): bool;

        public function 
hash(): string;
    }
}
Онлайн: 1
Реклама