File "Abstract.php"

Full Path: /home/romayxjt/public_html/wp-content/plugins/the-events-calendar/src/Tribe/Aggregator/API/Abstract.php
File size: 327 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
// Don't load directly
defined( 'WPINC' ) or die;

abstract class Tribe__Events__Aggregator__API__Abstract {
	/**
	 * @var Tribe__Events__Aggregator__Service
	 */
	public $service;

	public $cache_group = 'tribe_aggregator';

	public function __construct() {
		$this->service = tribe( 'events-aggregator.service' );
	}
}