mirror of
https://github.com/itflow-org/itflow
synced 2026-02-28 02:44:53 +00:00
14 lines
258 B
PHP
14 lines
258 B
PHP
<?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();
|
|
}
|