Skip to content

Commit

Permalink
Reverted PhpStorms auto conversion of array declarations to shorthand…
Browse files Browse the repository at this point in the history
…. This is because this package still supports PHP v5.3
  • Loading branch information
stevenwadejr committed Jun 26, 2015
1 parent 462c3b3 commit 49a7fec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/HelpScoutApp/DynamicApp.php
Expand Up @@ -137,6 +137,6 @@ public function getResponse($html) {
if (is_array($html)) {
$html = implode('', $html);
}
return json_encode(['html' => $html]);
return json_encode(array('html' => $html));
}
}

0 comments on commit 49a7fec

Please sign in to comment.