Files
starter-kit/vendor/illuminate/contracts/Support/ValidatedData.php
T
2025-06-13 10:48:20 -10:00

12 lines
174 B
PHP

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