Files
firefly-iii/app/lib/Firefly/Helper/Toolkit/ToolkitInterface.php

36 lines
647 B
PHP
Raw Normal View History

<?php
namespace Firefly\Helper\Toolkit;
use Illuminate\Support\Collection;
/**
* Interface ToolkitInterface
*
* @package Firefly\Helper\Toolkit
*/
2014-07-15 22:16:29 +02:00
interface ToolkitInterface
{
/**
2014-08-10 15:01:46 +02:00
*
* @return null
*/
public function getDateRange();
/**
* Takes any collection and tries to make a sensible select list compatible array of it.
*
* @param Collection $set
* @param null $titleField
*
* @return mixed
*/
public function makeSelectList(Collection $set, $titleField = null);
public function next();
2014-09-22 07:25:23 +02:00
public function prev();
2014-09-22 07:25:23 +02:00
public function checkImportJobs();
}