Code clean up.

This commit is contained in:
James Cole
2017-11-15 10:52:29 +01:00
parent aee17221eb
commit 649dca77f5
305 changed files with 1200 additions and 1600 deletions

View File

@@ -60,7 +60,6 @@ class TransactionMatcher
public function __construct(JournalTaskerInterface $tasker)
{
$this->tasker = $tasker;
}
/**
@@ -151,7 +150,6 @@ class TransactionMatcher
$this->range = $range;
return $this;
}
/**
@@ -236,11 +234,8 @@ class TransactionMatcher
Log::debug(sprintf('reachedEndOfList: %s', var_export($reachedEndOfList, true)));
Log::debug(sprintf('foundEnough: %s', var_export($foundEnough, true)));
Log::debug(sprintf('searchedEnough: %s', var_export($searchedEnough, true)));
} while (!$reachedEndOfList && !$foundEnough && !$searchedEnough);
return $result;
}
}