/**
*
* Concrete adapter class test.
*
*/
class Test_{:class} extends {:extends} {
/**
*
* Default configuration values.
*
* @var array
*
*/
protected $_Test_{:class} = array(
);
/**
*
* Constructor; sets the test as 'todo' until you provide adapter-specific
* configuration values. Delete the constructor method after you do so.
*
*/
public function __construct($config = null)
{
$this->todo('need adapter-specific config');
}
}