master

laravel/framework

Last updated at: 29/12/2023 09:22

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
{
    //
}