Move some methods around, refactoring.

This commit is contained in:
James Cole
2016-10-09 07:58:27 +02:00
parent ea7ee7ee9a
commit c64771b76b
19 changed files with 207 additions and 343 deletions

View File

@@ -63,7 +63,7 @@ class IngDescription implements SpecificInterface
$this->removeIBANIngDescription();
$this->removeNameIngDescription();
break;
case 'BA' : // Betaalautomaat
case 'BA': // Betaalautomaat
$this->addNameIngDescription();
break;
}
@@ -80,7 +80,7 @@ class IngDescription implements SpecificInterface
*/
protected function addNameIngDescription()
{
$this->row[8] = $this->row[1] . " " . $this->row[8];
$this->row[8] = $this->row[1] . ' ' . $this->row[8];
return true;
}