`private function _fetch_table() { if ($this->_table == NULL) { $this->_table = plural(preg_replace('/(_m|_model)?$/', '', strtolower(get_class($this)))); } }` Why do you use the **plural** in the _fetch_table() function?
private function _fetch_table() { if ($this->_table == NULL) { $this->_table = plural(preg_replace('/(_m|_model)?$/', '', strtolower(get_class($this)))); } }Why do you use the plural in the _fetch_table() function?