Removed unnecessary imports (use statements) [skip ci]

This commit is contained in:
James Cole
2015-05-05 12:57:27 +02:00
parent cbb62d3d78
commit f331e7d820
13 changed files with 28 additions and 35 deletions

View File

@@ -212,7 +212,7 @@ class BillRepository implements BillRepositoryInterface
* when the current period has a transaction journal.
*/
/** @var \Carbon\Carbon $obj */
$obj = new Carbon;
$obj = new Carbon;
$today = Navigation::addPeriod($obj, $bill->repeat_freq, 0);
$skip = $bill->skip + 1;

View File

@@ -71,9 +71,9 @@ interface CategoryRepositoryInterface
public function getWithoutCategory(Carbon $start, Carbon $end);
/**
* @param Category $category
* @param \Carbon\Carbon $start
* @param \Carbon\Carbon $end
* @param Category $category
* @param \Carbon\Carbon $start
* @param \Carbon\Carbon $end
*
* @return float
*/