ZF-1417: Add get() accessor to allow default values from a config node
Description
public function get($name, $default = null)
{
$result = $this->__get($name);
if ($result !== null) {
return $result;
}
return $default;
}
Comments
Posted by Bill Karwin (bkarwin) on 2007-05-23T10:07:32.000+0000
Assigning to Darby.
Posted by Rob Allen (rob) on 2007-05-30T15:34:39.000+0000
Fixed in svn 5063