mirror of
https://github.com/wintercms/winter.git
synced 2024-06-28 05:33:29 +02:00
14 lines
307 B
PHP
14 lines
307 B
PHP
|
<?php namespace Cms\Classes;
|
||
|
|
||
|
use Illuminate\Support\Collection as CollectionBase;
|
||
|
use System\Classes\ApplicationException;
|
||
|
|
||
|
/**
|
||
|
* This class represents a collection of Cms Objects.
|
||
|
*
|
||
|
* @package october\cms
|
||
|
* @author Alexey Bobkov, Samuel Georges
|
||
|
*/
|
||
|
class CmsObjectCollection extends CollectionBase
|
||
|
{
|
||
|
}
|