HEX
Server: LiteSpeed
System: Linux server315.web-hosting.com 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
User: globfdxw (6114)
PHP: 8.1.34
Disabled: NONE
Upload Files
File: //home/globfdxw/www/wp-content/plugins/the-events-calendar/common/src/Common/SVG/Controller.php
<?php
/**
 * Controller for the TEC SVG API.
 *
 * @since 6.10.0
 *
 * @package TEC\Common\SVG
 */

declare( strict_types=1 );

namespace TEC\Common\SVG;

use TEC\Common\Contracts\Provider\Controller as Controller_Contract;

/**
 * Controller for the TEC SVG API.
 *
 * @since 6.10.0
 *
 * @package TEC\Common\SVG
 */
class Controller extends Controller_Contract {
	/**
	 * Registers the filters and actions hooks added by the controller.
	 *
	 * @since 6.10.0
	 *
	 * @return void
	 */
	protected function do_register(): void {
		$this->container->singleton( SVG::class );
	}

	/**
	 * Unregisters the filters and actions hooks added by the controller.
	 *
	 * @since 6.10.0
	 *
	 * @return void
	 */
	public function unregister(): void {
		// Nothing to do here.
	}
}