From fc41098477d24f72dcbc7bb2dec9743c4bd73352 Mon Sep 17 00:00:00 2001 From: Aaron Parecki Date: Sat, 22 Apr 2017 14:33:39 -0700 Subject: [PATCH] fix --- lib/Formats/GitHub.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Formats/GitHub.php b/lib/Formats/GitHub.php index e4184d4..06ebe1e 100644 --- a/lib/Formats/GitHub.php +++ b/lib/Formats/GitHub.php @@ -106,11 +106,11 @@ class GitHub { $entry['published'] = $data['created_at']; - $response = [ + $r = [ 'data' => $entry ]; - return [$response, $json, $response['code']]; + return [$r, $json, $response['code']]; } }