<?php
include_once dirname ( __FILE__ ) . '/cache/Instance.php';

class Sphere_Cache {

  protected $cacheInstance;

  private function __construct() {

    $this->cacheInstance = Sphere_Cache_Instance::getInstance ();

  }

}
?>