Code cleanup. [skip ci]

This commit is contained in:
James Cole
2016-02-17 17:19:57 +01:00
parent f9c3c0c8ae
commit 2ef1c54417

View File

@@ -114,9 +114,9 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
if (preg_match('/^SEPA(.{28})/', $this->data['description'], $matches)) {
Log::debug('AbnAmroSpecifix: Description is structured as SEPA plain description.');
$type = $matches[1];
$reference = '';
$name = '';
$type = $matches[1];
$reference = '';
$name = '';
$newDescription = '';
// SEPA plain descriptions contain several key-value pairs, split by a colon
@@ -126,7 +126,7 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
foreach ($matches as $match) {
$key = $match[1];
$value = trim($match[2]);
Log::debug( "SEPA: $key - $value" );
Log::debug("SEPA: $key - $value");
switch (strtoupper($key)) {
case 'OMSCHRIJVING':
$newDescription = $value;
@@ -148,10 +148,10 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
// Set a new description for the current transaction. If none was given
// set the description to type, name and reference
if( $newDescription ) {
if ($newDescription) {
$this->data['description'] = $newDescription;
} else {
$this->data[ 'description' ] = sprintf('%s - %s (%s)', $type, $name, $reference);
$this->data['description'] = sprintf('%s - %s (%s)', $type, $name, $reference);
}
return true;
@@ -171,9 +171,9 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
if (preg_match_all('!\/([A-Z]{3,4})\/([^/]*)!', $this->data['description'], $matches, PREG_SET_ORDER)) {
Log::debug('AbnAmroSpecifix: Description is structured as TRTP format.');
$type = '';
$name = '';
$reference = '';
$type = '';
$name = '';
$reference = '';
$newDescription = '';
// Search for properties specified in the TRTP format. If no description
@@ -205,11 +205,11 @@ class AbnAmroDescription extends Specifix implements SpecifixInterface
}
// Set a new description for the current transaction. If none was given
// set the description to type, name and reference
if( $newDescription ) {
// set the description to type, name and reference
if ($newDescription) {
$this->data['description'] = $newDescription;
} else {
$this->data[ 'description' ] = sprintf('%s - %s (%s)', $type, $name, $reference);
$this->data['description'] = sprintf('%s - %s (%s)', $type, $name, $reference);
}
}