mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
29 lines
411 B
PHP
29 lines
411 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Migration;
|
|
|
|
/**
|
|
* Interface MigrationHelperInterface
|
|
*
|
|
* @package Firefly\Helper\Migration
|
|
*/
|
|
interface MigrationHelperInterface
|
|
{
|
|
/**
|
|
* @param $path
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function loadFile($path);
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function validFile();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function migrate();
|
|
|
|
}
|