. * * ========================= * * This file contains the UpgraderMapperInterface * * @category API * @package DmarcSrg * @author Aleksey Andreev (liuch) * @license https://www.gnu.org/licenses/gpl-3.0.html GNU/GPLv3 */ namespace Liuch\DmarcSrg\Database; interface UpgraderMapperInterface { /** * Starts upgrading the database structure * * @param string $target Target version of the database structure to upgrade to * * @return void */ public function go(string $target): void; }