mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-22 14:33:11 -06:00
15 lines
246 B
PHP
15 lines
246 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Controllers;
|
|
|
|
|
|
interface RecurringInterface {
|
|
/**
|
|
* Returns messages about the validation.
|
|
*
|
|
* @param array $data
|
|
*
|
|
* @return array
|
|
*/
|
|
public function validate(array $data);
|
|
}
|