<?php
namespace App\KommaApp\Kms\Core\Tree;
use Illuminate\Http\Resources\Json\ResourceCollection;
/**
* Class TreeResourceCollection
*
* A collection of TreeResource instances
*
* @see TreeResource
* @package App\KommaApp\Kms\Core\Tree
*/
class TreeResourceCollection extends ResourceCollection
{
public function toArray($request)
{
return $this->collection;
}
}