chartmogul/chartmogul-php

View on GitHub
src/Invoice.php

Summary

Maintainability
B
5 hrs
Test Coverage
B
84%

Showing 2 of 2 total issues

Similar blocks of code found in 2 locations. Consider refactoring.
Open

protected function setLineItem($index, $line)
{
if ($line instanceof AbstractLineItem) {
$this->line_items[$index] = $line;
} elseif (is_array($line) && isset($line['type']) && $line['type'] === 'one_time') {
Severity: Major
Found in src/Invoice.php and 1 other location - About 2 hrs to fix
src/Invoice.php on lines 80..89

Similar blocks of code found in 2 locations. Consider refactoring.
Open

protected function setTransaction($index, $tr)
{
if ($tr instanceof AbstractTransaction) {
$this->transactions[$index] = $tr;
} elseif (is_array($tr) && isset($tr['type']) && $tr['type'] === 'payment') {
Severity: Major
Found in src/Invoice.php and 1 other location - About 2 hrs to fix
src/Invoice.php on lines 69..78

There are no issues that match your filters.

Category
Status