ValidatedData.php 174 B

1234567891011
  1. <?php
  2. namespace Illuminate\Contracts\Support;
  3. use ArrayAccess;
  4. use IteratorAggregate;
  5. interface ValidatedData extends Arrayable, ArrayAccess, IteratorAggregate
  6. {
  7. //
  8. }