Rev 27 |
    Blame |
    Compare with Previous |
    Last modification |
    View Log
    | RSS feed
  
  
    1
  
  
<?php
require_once __DIR__ . '/Adapter.php';
require_once __DIR__ . '/MySQLDB.php';
class MySQLAdapter extends Adapter
{
  /**
  * Constructs the adapter, associating a {@link MySQLDB} with it
  * @param MySQLDB $database
  */
  /* Singleton */
  protected function __construct(MySQLDB $database)
  {
    parent::__construct($database);
  }
}