/
githubmirror
/
framework
Обзор
Документация
Войти
/
githubmirror
/
framework
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
13.x
src/Illuminate/Contracts/Support/HasOnceHash.php
13 строк
258 B
Jakub Potocký
[12.x] Introduce `ComputesOnceableHashInterface` (#56009)
12 июн 2025, 17:07
Не верифицирован
12 июн 2025, 17:07
feccc98
Код
Авторство
О чём код?
<?php namespace Illuminate\Contracts\Support; interface HasOnceHash { /** * Compute the hash that should be used to represent the object when given to a function using "once". * * @return string */ public function onceHash(); }