mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
20 lines
269 B
PHP
20 lines
269 B
PHP
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: sander
|
|
* Date: 03/07/14
|
|
* Time: 21:33
|
|
*/
|
|
|
|
namespace Firefly\Helper\Migration;
|
|
|
|
|
|
interface MigrationHelperInterface
|
|
{
|
|
public function loadFile($path);
|
|
|
|
public function validFile();
|
|
|
|
public function migrate();
|
|
|
|
}
|