├── .php_cs ├── Collection.php ├── LICENSE ├── README.md ├── composer.json ├── interfaces ├── Arrayable.php └── Jsonable.php └── traits └── Macroable.php /.php_cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/.php_cs -------------------------------------------------------------------------------- /Collection.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/Collection.php -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/composer.json -------------------------------------------------------------------------------- /interfaces/Arrayable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/interfaces/Arrayable.php -------------------------------------------------------------------------------- /interfaces/Jsonable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/interfaces/Jsonable.php -------------------------------------------------------------------------------- /traits/Macroable.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yii2mod/collection/HEAD/traits/Macroable.php --------------------------------------------------------------------------------