コード例 #1
0
ファイル: Database.php プロジェクト: papac/framework
 /**
  * Charge le factory Table
  *
  * @param string $tableName le nom de la table
  *
  * @return Table
  */
 public static function table($tableName)
 {
     static::verifyConnection();
     return Table::load($tableName, static::$db);
 }