Skip to content

Commit

Permalink
[TGER-184] fix psalm error
Browse files Browse the repository at this point in the history
  • Loading branch information
devjk1 committed May 15, 2021
1 parent db55b39 commit 050638b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Actions/SavePhoneNumberAction.php
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ public function execute(string $phoneNumber)

return optional($countryCallingcode)->phones()->firstOrCreate([
'full_number' => $countryCallingcode->code . $phoneNumber,
'phone_area_code' => $phoneArea->code, // This only work for US area code.
'phone_area_code' => $parsedAreaCode, // This only work for US area code.
]);
}

Expand Down

0 comments on commit 050638b

Please sign in to comment.