nouveau-theatre-de-besancon/kirby/src/Cms/LayoutColumns.php
2024-07-24 09:43:31 +02:00

23 lines
452 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
* @license https://getkirby.com/license
*/
class LayoutColumns extends Items
{
public const ITEM_CLASS = LayoutColumn::class;
/**
* All registered layout columns methods
*/
public static array $methods = [];
}