src/Reports/CashFlowStatement.php
Method getSections
has 40 lines of code (exceeds 25 allowed). Consider refactoring. Open
Open
public function getSections($startDate = null, $endDate = null, $fullbalance = true): array
{
// Accounts movements for the Period
foreach (array_keys($this->balances) as $section) {
$this->balances[$section] = Account::sectionBalances(
Method toString
has 31 lines of code (exceeds 25 allowed). Consider refactoring. Wontfix
Wontfix
public function toString(): void
{
$statement = $this->statement;
// Title
Method printResult
has 5 arguments (exceeds 4 allowed). Consider refactoring. Wontfix
Wontfix
protected function printResult(string $result, string $statement, string $indent, int $indentFactor, bool $heading = true)