/**
* Adds a HAVING condition to the query by AND.
* [...]
* Array values are quoted and comma-separated.
*
* <code>
* * $select->having("COUNT(id) = $count");
*
* * $select->having('COUNT(id) = ?', $count);
*
* * $select->having('COUNT(id) = :count');
* $select->bind('count', $count); * </code>
* [...]
*/
Obviously something was planned for binding values directly into the Select instance, but that was never implemented (maybe abandoned?).
This patch fixes the API docs.