CRM/vendor/illuminate/contracts/Support/ValidatedData.php
2025-03-11 13:34:12 +08:00

12 lines
174 B
PHP

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