From 25047b8623a43d2c228baa10ef920806693a9239 Mon Sep 17 00:00:00 2001 From: HergenD Date: Mon, 3 Aug 2020 12:45:07 +0000 Subject: [PATCH] Apply fixes from StyleCI --- src/IdentityDocuments.php | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/IdentityDocuments.php b/src/IdentityDocuments.php index f4d3fb9..87462d1 100644 --- a/src/IdentityDocuments.php +++ b/src/IdentityDocuments.php @@ -22,8 +22,8 @@ public static function parse(Request $request) ]); if ($validator->fails()) { return json_encode([ - "error" => $validator->errors()->first(), - "success" => false, + 'error' => $validator->errors()->first(), + 'success' => false, ]); } @@ -48,8 +48,8 @@ public static function parse(Request $request) $full_img = Image::make($images->back_img); } else { return json_encode([ - "error" => "Missing images", - "success" => false, + 'error' => 'Missing images', + 'success' => false, ]); }