index/src/Collections/IArrayable.php

11 lines
157 B
PHP
Raw Normal View History

2022-09-13 13:13:11 +00:00
<?php
// IArrayable.php
// Created: 2022-02-03
// Updated: 2022-02-03
namespace Index\Collections;
interface IArrayable {
function toArray(): array;
}