proofdb/vendor/illuminate/contracts/Support/ValidatedData.php
2026-05-01 23:40:14 +08:00

12 lines
174 B
PHP

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