mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-09-04 11:48:05 +00:00
31 lines
460 B
PHP
31 lines
460 B
PHP
<?php
|
|
|
|
namespace Firefly\Helper\Toolkit;
|
|
|
|
use Illuminate\Http\Request;
|
|
|
|
/**
|
|
* Interface ToolkitInterface
|
|
*
|
|
* @package Firefly\Helper\Toolkit
|
|
*/
|
|
interface ToolkitInterface
|
|
{
|
|
/**
|
|
* @param Request $request
|
|
*
|
|
* @return mixed
|
|
*/
|
|
public function getDateRange(Request $request);
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getDateRangeDates();
|
|
|
|
/**
|
|
* @return mixed
|
|
*/
|
|
public function getReminders();
|
|
|
|
}
|