mirror of
https://github.com/Neetpone/ponepaste.git
synced 2025-03-12 22:50:07 +01:00
12 lines
174 B
PHP
12 lines
174 B
PHP
|
<?php
|
||
|
|
||
|
namespace Illuminate\Contracts\Support;
|
||
|
|
||
|
use ArrayAccess;
|
||
|
use IteratorAggregate;
|
||
|
|
||
|
interface ValidatedData extends Arrayable, ArrayAccess, IteratorAggregate
|
||
|
{
|
||
|
//
|
||
|
}
|