ValidatedData.php
TLDR
This file defines an interface ValidatedData
that extends the Arrayable
, ArrayAccess
, and IteratorAggregate
interfaces.
Classes
<?php
namespace Illuminate\Contracts\Support;
use ArrayAccess;
use IteratorAggregate;
interface ValidatedData extends Arrayable, ArrayAccess, IteratorAggregate
{
//
}