HasOnceHash.php 258 B

12345678910111213
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. interface HasOnceHash
  4. {
  5. /**
  6. * Compute the hash that should be used to represent the object when given to a function using "once".
  7. *
  8. * @return string
  9. */
  10. public function onceHash();
  11. }