MigrationInterface.php
| 1 | <?php |
| 2 | |
| 3 | /** |
| 4 | * ====================================================================== |
| 5 | * LICENSE: This file is subject to the terms and conditions defined in * |
| 6 | * file 'license.txt', which is part of this source code package. * |
| 7 | * ====================================================================== |
| 8 | * |
| 9 | * @version 6.0.0 |
| 10 | */ |
| 11 | |
| 12 | /** |
| 13 | * Migration interface |
| 14 | * |
| 15 | * @package AAM |
| 16 | * @version 6.0.0 |
| 17 | */ |
| 18 | interface AAM_Core_Contract_MigrationInterface |
| 19 | { |
| 20 | /** |
| 21 | * Trigger migration script |
| 22 | * |
| 23 | * @return array |
| 24 | * |
| 25 | * @access public |
| 26 | * @version 6.0.0 |
| 27 | */ |
| 28 | public function run(); |
| 29 | |
| 30 | } |