Skip to content
This repository has been archived by the owner on Mar 3, 2023. It is now read-only.

Commit

Permalink
Apply fixes from StyleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
hugovk authored and StyleCIBot committed Nov 17, 2017
1 parent ec6106c commit 6ba0496
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Helpers/ArrayHelper.php
Expand Up @@ -18,7 +18,7 @@ public static function arrayToTableRows(array $response)
{
$rows = [];
foreach ($response as $key => $value) {
if(!is_array($value)) {
if (!is_array($value)) {
$rows[] = [$key, $value];
} else {
$rows[] = [$key, implode(",", $value)];
Expand Down

0 comments on commit 6ba0496

Please sign in to comment.