File "Element_With_Children.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/common/src/Common/Admin/Entities/Element_With_Children.php
File size: 372 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
/**
 * Container element.
 *
 * @since 6.1.0
 */

declare( strict_types=1 );

namespace TEC\Common\Admin\Entities;

/**
 * Interface Entity_With_Children
 *
 * @since 6.1.0
 */
interface Element_With_Children extends Element {

	/**
	 * Get the children of the container.
	 *
	 * @since 6.1.0
	 *
	 * @return Element[]
	 */
	public function get_children(): array;
}