mirror of
https://github.com/wiosna-dev/common-library.git
synced 2026-03-12 01:31:45 +01:00
29 lines
690 B
PHP
29 lines
690 B
PHP
<?php
|
|
|
|
/**
|
|
* (c) Meritoo.pl, http://www.meritoo.pl
|
|
* For the full copyright and license information, please view the LICENSE
|
|
* file that was distributed with this source code.
|
|
*/
|
|
|
|
namespace Meritoo\Common\Traits;
|
|
|
|
use Meritoo\Common\Traits\Collection\ArrayAccessTrait;
|
|
use Meritoo\Common\Traits\Collection\CountableTrait;
|
|
use Meritoo\Common\Traits\Collection\IteratorAggregateTrait;
|
|
use Meritoo\Common\Traits\Collection\MainTrait;
|
|
|
|
/**
|
|
* Trait for the Collection
|
|
*
|
|
* @author Meritoo <github@meritoo.pl>
|
|
* @copyright Meritoo <http://www.meritoo.pl>
|
|
*/
|
|
trait CollectionTrait
|
|
{
|
|
use MainTrait;
|
|
use CountableTrait;
|
|
use ArrayAccessTrait;
|
|
use IteratorAggregateTrait;
|
|
}
|