Example #1
0
 /**
  * 
  * Enter description here ...
  * @param array $tables
  */
 public static function truncate_tables(array $tables)
 {
     foreach ($tables as $table) {
         Database::truncate_table($table);
     }
 }