Skip to content

Commit

Permalink
Code style.
Browse files Browse the repository at this point in the history
  • Loading branch information
arcticfalcon committed Mar 19, 2019
1 parent 2664246 commit 097111e
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
3 changes: 1 addition & 2 deletions src/DataObjects/PaymentNetworkSpecific.php
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,7 @@ public static function tryParse(string $data)
$parts = parent::split($data);

return new static($parts[0], $parts[2]);
}
catch (\Exception $exception){
} catch (\Exception $exception) {
return null;
}
}
Expand Down
3 changes: 1 addition & 2 deletions src/Templates/MerchantAccountInformation.php
Original file line number Diff line number Diff line change
Expand Up @@ -63,8 +63,7 @@ public static function tryParse(string $data)
}

return $new;
}
catch (\Exception $exception){
} catch (\Exception $exception) {
return null;
}
}
Expand Down
2 changes: 1 addition & 1 deletion tests/MerchantPayloadTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ public function testInvalidCode()
MerchantPayload::parse($original);
}

public function testPayloadTooBig()
public function testPayloadTooBig()
{
$merchantAccountInformation = new MerchantAccountInformation(
'43',
Expand Down

0 comments on commit 097111e

Please sign in to comment.