Newer
Older
ubFramework / Portal / docroot / include / runtime / cache / Memory.php
@Christopher W. Olsen Christopher W. Olsen on 10 Dec 2017 265 bytes Cleaning Up Making It A Sub Module
<?php

class Sphere_Cache_Instance_Memory {

  function set($key, $value) {

    $this->$key = $value;

  }

  function get($key) {

    return isset ( $this->$key ) ? $this->$key : false;

  }

  function flush() {

    return true;

  }

}