Back to DatabaseAwareTrait class

Method setDbo

public void
setDbo
(\Joomla\Database\DatabaseInterface $db = null)
Set the database driver.
Parameters
  • \Joomla\Database\DatabaseInterface $db The database driver.
Returns
  • void
Since
  • 4.0.0

Method setDbo - Source code

/**
 * Set the database driver.
 *
 * @param   DatabaseInterface  $db  The database driver.
 *
 * @return  void
 *
 * @since   4.0.0
 */
public function setDbo(DatabaseInterface $db = null)
{
    $this->_db = $db;
}