1: <?php
2:
3: /**
4: * Deep
5: *
6: * @package rsanchez\Deep
7: * @author Rob Sanchez <info@robsanchez.com>
8: */
9:
10: namespace rsanchez\Deep\Collection;
11:
12: use rsanchez\Deep\Collection\FilterableTrait;
13: use rsanchez\Deep\Collection\FilterableInterface;
14: use Illuminate\Database\Eloquent\Collection;
15:
16: /**
17: * Collection of \rsanchez\Deep\Model\MatrixRow
18: */
19: class MatrixRowCollection extends Collection implements FilterableInterface
20: {
21: use FilterableTrait;
22: }
23: