????

Your IP : 216.73.216.188


Current Path : /home/degesdxb/public_html/wp-content/plugins/mphb-reviews/includes/settings/
Upload File :
Current File : //home/degesdxb/public_html/wp-content/plugins/mphb-reviews/includes/settings/settings-registry.php

<?php

namespace MPHBR\Settings;

class SettingsRegistry {

	private $main;
	private $license;

	public function __construct(){
		$this->main		 = new MainSettings();
		$this->license	 = new LicenseSettings();
	}

	/**
	 *
	 * @return MainSettings
	 */
	public function main(){
		return $this->main;
	}

	/**
	 *
	 * @return LicenseSettings
	 */
	public function license(){
		return $this->license;
	}

}