zlibproxy/vendor/illuminate/contracts/Support/ValidatedData.php
2023-01-02 19:56:44 +08:00

12 lines
174 B
PHP

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