<?php

/**
 * @file
 * Primary hook implementations for the Date Migrate Test module.
 */

/**
 * Implements hook_migrate_api().
 */
function date_migrate_test_migrate_api() {
  return array(
    'api' => 2,
    'migrations' => array(
      'DateExample' => array('class_name' => 'DateExampleMigration'),
    ),
  );
}
