Code cleanup.

This commit is contained in:
James Cole 2015-07-06 16:52:18 +02:00
parent 6bdb6db330
commit 3fb14b4708
31 changed files with 59 additions and 49 deletions

View File

@ -20,6 +20,7 @@ class ChartJsAccountChartGenerator implements AccountChartGenerator
/** /**
* @codeCoverageIgnore * @codeCoverageIgnore
*
* @param Collection $accounts * @param Collection $accounts
* @param Carbon $start * @param Carbon $start
* @param Carbon $end * @param Carbon $end

View File

@ -37,6 +37,7 @@ class GoogleBudgetChartGenerator implements BudgetChartGenerator
/** /**
* @codeCoverageIgnore * @codeCoverageIgnore
*
* @param Collection $entries * @param Collection $entries
* *
* @return array * @return array

View File

@ -76,6 +76,7 @@ class ChartJsCategoryChartGenerator implements CategoryChartGenerator
/** /**
* @codeCoverageIgnore * @codeCoverageIgnore
*
* @param Collection $entries * @param Collection $entries
* *
* @return array * @return array

View File

@ -99,6 +99,7 @@ class GoogleCategoryChartGenerator implements CategoryChartGenerator
$chart->addRowArray($entry); $chart->addRowArray($entry);
} }
$chart->generate(); $chart->generate();
return $chart->getData(); return $chart->getData();
} }

View File

@ -3,7 +3,6 @@
namespace FireflyIII\Generator\Chart\Report; namespace FireflyIII\Generator\Chart\Report;
use Config; use Config;
use Grumpydictator\Gchart\GChart;
use Illuminate\Support\Collection; use Illuminate\Support\Collection;
use Preferences; use Preferences;
@ -78,6 +77,7 @@ class ChartJsReportChartGenerator implements ReportChartGenerator
$data['datasets'][1]['data'][] = round($expense, 2); $data['datasets'][1]['data'][] = round($expense, 2);
$data['datasets'][0]['data'][] = round(($income / $count), 2); $data['datasets'][0]['data'][] = round(($income / $count), 2);
$data['datasets'][1]['data'][] = round(($expense / $count), 2); $data['datasets'][1]['data'][] = round(($expense / $count), 2);
return $data; return $data;
} }
} }

View File

@ -15,6 +15,17 @@ interface ConverterInterface
*/ */
public function convert(); public function convert();
/**
* @param array $data
*/
public function setData(array $data);
/**
* @param string $field
*
*/
public function setField($field);
/** /**
* @param int $index * @param int $index
*/ */
@ -35,15 +46,4 @@ interface ConverterInterface
*/ */
public function setValue($value); public function setValue($value);
/**
* @param array $data
*/
public function setData(array $data);
/**
* @param string $field
*
*/
public function setField($field);
} }

View File

@ -1,6 +1,7 @@
<?php <?php
namespace FireflyIII\Helpers\Csv\Converter; namespace FireflyIII\Helpers\Csv\Converter;
use FireflyIII\Models\TransactionCurrency; use FireflyIII\Models\TransactionCurrency;
/** /**

View File

@ -1,6 +1,7 @@
<?php <?php
namespace FireflyIII\Helpers\Csv\Converter; namespace FireflyIII\Helpers\Csv\Converter;
use FireflyIII\Models\TransactionCurrency; use FireflyIII\Models\TransactionCurrency;
/** /**

View File

@ -1,8 +1,9 @@
<?php <?php
namespace FireflyIII\Helpers\Csv\PostProcessing; namespace FireflyIII\Helpers\Csv\PostProcessing;
use Preferences;
use FireflyIII\Models\TransactionCurrency; use FireflyIII\Models\TransactionCurrency;
use Preferences;
/** /**
* Class Currency * Class Currency

View File

@ -14,15 +14,16 @@ namespace FireflyIII\Helpers\Csv\PostProcessing;
* *
* @package FireflyIII\Helpers\Csv\PostProcessing * @package FireflyIII\Helpers\Csv\PostProcessing
*/ */
interface PostProcessorInterface { interface PostProcessorInterface
{
/**
* @param array $data
*/
public function setData(array $data);
/** /**
* @return array * @return array
*/ */
public function process(); public function process();
/**
* @param array $data
*/
public function setData(array $data);
} }

View File

@ -1,6 +1,7 @@
<?php <?php
namespace FireflyIII\Helpers\Csv; namespace FireflyIII\Helpers\Csv;
use League\Csv\Reader; use League\Csv\Reader;
/** /**

View File

@ -40,6 +40,7 @@ class Budget extends Model
/** /**
* @param array $fields * @param array $fields
* @SuppressWarnings(PHPMD.CyclomaticComplexity) * @SuppressWarnings(PHPMD.CyclomaticComplexity)
*
* @codeCoverageIgnore * @codeCoverageIgnore
* *
* @return Budget * @return Budget

View File

@ -83,7 +83,7 @@ class Navigation
$subDay = ['week', 'weekly', '1W', 'month', 'monthly', '1M', '3M', 'quarter', 'quarterly', '6M', 'half-year', 'year', 'yearly']; $subDay = ['week', 'weekly', '1W', 'month', 'monthly', '1M', '3M', 'quarter', 'quarterly', '6M', 'half-year', 'year', 'yearly'];
if (!isset($functionMap[$repeatFreq])) { if (!isset($functionMap[$repeatFreq])) {
throw new FireflyException('Cannot do endOfPeriod for $repeat_freq "' . $repeatFreq.'"'); throw new FireflyException('Cannot do endOfPeriod for $repeat_freq "' . $repeatFreq . '"');
} }
$function = $functionMap[$repeatFreq]; $function = $functionMap[$repeatFreq];
if (isset($modifierMap[$repeatFreq])) { if (isset($modifierMap[$repeatFreq])) {
@ -204,7 +204,7 @@ class Navigation
return $date; return $date;
} }
throw new FireflyException('Cannot do startOfPeriod for $repeat_freq "' . $repeatFreq.'"'); throw new FireflyException('Cannot do startOfPeriod for $repeat_freq "' . $repeatFreq . '"');
} }
/** /**
@ -246,7 +246,7 @@ class Navigation
return $date; return $date;
} }
throw new FireflyException('Cannot do subtractPeriod for $repeat_freq "' . $repeatFreq.'"'); throw new FireflyException('Cannot do subtractPeriod for $repeat_freq "' . $repeatFreq . '"');
} }
/** /**
@ -282,7 +282,7 @@ class Navigation
return $end; return $end;
} }
throw new FireflyException('updateEndDate cannot handle $range "' . $range.'"'); throw new FireflyException('updateEndDate cannot handle $range "' . $range . '"');
} }
/** /**
@ -316,7 +316,7 @@ class Navigation
return $start; return $start;
} }
throw new FireflyException('updateStartDate cannot handle $range "' . $range.'"'); throw new FireflyException('updateStartDate cannot handle $range "' . $range . '"');
} }