fuc/vendor/illuminate/contracts/Support/ValidatedData.php
2025-02-23 13:30:57 +08:00

12 lines
174 B
PHP
Executable File

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