10 lines
158 B
PHP
10 lines
158 B
PHP
|
<?php
|
||
|
namespace nur\impl;
|
||
|
|
||
|
use nur\b\coll\IterableArray;
|
||
|
use nur\b\coll\TGenericArray;
|
||
|
|
||
|
class GIteratableArray extends IterableArray {
|
||
|
use TGenericArray;
|
||
|
}
|