File "Br.php"

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

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

declare( strict_types=1 );

namespace TEC\Common\Admin\Entities;

/**
 * Class Br
 *
 * @since 6.1.0
 */
class Br extends Base_Entity {

	/**
	 * Render the element.
	 *
	 * @since 6.1.0
	 *
	 * @return void
	 */
	public function render() {
		echo '<br>';
	}
}