mirror of
https://github.com/itflow-org/itflow
synced 2026-03-01 11:24:52 +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();
|
|
}
|