19 lines
370 B
PHP
19 lines
370 B
PHP
|
<?php
|
||
|
|
||
|
namespace Kirby\Cms;
|
||
|
|
||
|
/**
|
||
|
* A collection of layout columns
|
||
|
* @since 3.5.0
|
||
|
*
|
||
|
* @package Kirby Cms
|
||
|
* @author Bastian Allgeier <bastian@getkirby.com>
|
||
|
* @link https://getkirby.com
|
||
|
* @copyright Bastian Allgeier GmbH
|
||
|
* @license https://getkirby.com/license
|
||
|
*/
|
||
|
class LayoutColumns extends Items
|
||
|
{
|
||
|
const ITEM_CLASS = '\Kirby\Cms\LayoutColumn';
|
||
|
}
|