/home/arranoyd/magicraft/wp-content/plugins/titan-framework/lib/class-wp-customize-control.php
<?php

if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly
}
/*
 * WP_Customize_Control with description
 */
add_action( 'customize_register', 'registerTitanFrameworkCustomizeControl', 1 );
function registerTitanFrameworkCustomizeControl() {
	class TitanFrameworkCustomizeControl extends WP_Customize_Control {
		public $description;

		public function render_content() {
			parent::render_content();
			// echo "<p class='description'>{$this->description}</p>";
		}
	}
}