addToDriverList() public static method

Adds a driver to the list.
public static addToDriverList ( string $driverID )
$driverID string driver identifier.
Example #1
0
/**
 * Convenience function for test hook.
 * If you added the proper Writer class, the facade should be able
 * to automatically load it, i.e. \RedBeanPHP\QueryWriter\MyWriter
 * 
 * @global array $ini
 * 
 * @param string $name name of the connection (key)
 * @param string $dsn  DSN to connect
 * @param string $user username
 * @param string $pass passwords
 */
function add_writer_to_tests($name, $dsn, $user, $pass)
{
    global $ini;
    \RedUNIT\Base::addToDriverList($name);
    R::addDatabase($name, $dsn, $user, $pass);
    $ini[$name] = true;
}