. */ #namespace Doctrine::Core; /** * Doctrine_Configurable * * @license http://www.opensource.org/licenses/lgpl-license.php LGPL * @link www.phpdoctrine.org * @since 2.0 * @version $Revision$ * @author Konsta Vesterinen * @author Roman Borschel */ interface Doctrine_Configurable { public function getAttribute($name); public function setAttribute($name, $value); public function hasAttribute($name); }