Newer
Older
ubFramework / Portal / docroot / include / runtime / Cache.php
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 243 bytes Cleaning Up Making It A Sub Module
<?php
include_once dirname ( __FILE__ ) . '/cache/Instance.php';

class Sphere_Cache {

  protected $cacheInstance;

  private function __construct() {

    $this->cacheInstance = Sphere_Cache_Instance::getInstance ();

  }

}
?>