PHPColibri/framework

View on GitHub
Base/DynamicCollectionInterface.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php
namespace Colibri\Base;

/**
 * Interface for DynamicCollection, that unite \ArrayAccess, \Iterator, & \Countable.
 */
interface DynamicCollectionInterface extends \ArrayAccess, \Iterator, \Countable
{
}