mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-01-07 06:33:57 -06:00
26 lines
386 B
PHP
26 lines
386 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();
|
|
|
|
}
|