Your IP : 216.73.216.171


Current Path : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/schema/sources/
Upload File :
Current File : /home/ereika83/www/wp-content/plugins/wpmu-dev-seo/includes/core/schema/sources/class-property.php

<?php
/**
 * Property class for handling schema properties in SmartCrawl.
 *
 * @package SmartCrawl
 */

namespace SmartCrawl\Schema\Sources;

use SmartCrawl\Schema\Utils;

/**
 * Class Property
 *
 * Abstract class for schema properties.
 */
abstract class Property {

	/**
	 * Schema utilities.
	 *
	 * @var Utils
	 */
	protected $utils;

	/**
	 * Constructor.
	 */
	public function __construct() {
		$this->utils = Utils::get();
	}

	/**
	 * Retrieves the value of the property.
	 *
	 * @return mixed The value of the property.
	 */
	abstract public function get_value();
}