Expand the chart.

This commit is contained in:
Sander Dorigo
2014-10-13 18:50:37 +02:00
parent 36d8dee853
commit 733b6d7eb7
3 changed files with 60 additions and 25 deletions

View File

@@ -2,6 +2,7 @@
namespace Firefly\Helper\Toolkit;
use Carbon\Carbon;
use Illuminate\Support\Collection;
/**
@@ -40,4 +41,12 @@ interface ToolkitInterface
*/
public function colorRange($start, $end, $steps = 5);
/**
* @param Carbon $date
* @param $repeatFreq
* @param $skip
* @return Carbon
*/
public function addPeriod(Carbon $date, $repeatFreq, $skip);
}