Files
pancake/vendor/illuminate/contracts/Support/ValidatedData.php
2025-11-26 11:50:55 -05:00

12 lines
174 B
PHP

<?php
namespace Illuminate\Contracts\Support;
use ArrayAccess;
use IteratorAggregate;
interface ValidatedData extends Arrayable, ArrayAccess, IteratorAggregate
{
//
}