Skip to content
This repository has been archived by the owner on Feb 7, 2024. It is now read-only.

Commit

Permalink
Fix order prefix id
Browse files Browse the repository at this point in the history
  • Loading branch information
nickknissen committed Feb 13, 2019
1 parent b591526 commit 0631019
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/QuickPay.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public function request(string $method, string $url, array $data = []) : object

public function orderIdPrefix() : string
{
if (str_contains(strtolower(config('app.env')), 'prod')) {
if (!str_contains(strtolower(config('app.env')), 'prod')) {
return '';
}

Expand Down

0 comments on commit 0631019

Please sign in to comment.