/*
* Gets or sets the db group
* @param string $value
* @return string|$this
/
public function db($value = NULL)
{
if (func_num_args() !== 0)
{
return $this->set('db', $db);
}
return $this->db;
}
I think should be:
/*
* Gets or sets the db group
* @param string $value
* @return string|$this
/
public function db($value = NULL)
{
if (func_num_args() !== 0)
{
return $this->set('db', $value);
}
The code now is:
/* * Gets or sets the db group * @param string $value * @return string|$this / public function db($value = NULL) { if (func_num_args() !== 0) { return $this->set('db', $db); }
I think should be:
/* * Gets or sets the db group * @param string $value * @return string|$this / public function db($value = NULL) { if (func_num_args() !== 0) { return $this->set('db', $value); }
to set correctly the db property