<?php namespace App\Library; use Illuminate\Support\Carbon; interface RateTrackerInterface { public function count(Carbon $now = null, $failedCallback = null); public function test(Carbon $now = null, $failedCallback = null); }