PotentiallyMissing.php 217B

1234567891011121314
  1. <?php
  2. namespace Illuminate\Http\Resources;
  3. interface PotentiallyMissing
  4. {
  5. /**
  6. * Determine if the object should be considered "missing".
  7. *
  8. * @return bool
  9. */
  10. public function isMissing();
  11. }