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