lib/Ajde/Db/Cache.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

class Ajde_Db_Cache extends Ajde_Object_Singleton
{
    protected $_cache = null;

    /**
     * @return Ajde_Db_Cache
     */
    public static function getInstance()
    {
        static $instance;

        return $instance === null ? $instance = new self() : $instance;
    }
}