Skip to content

Commit

Permalink
Automatic commit by iyzico-ci v2.0.57
Browse files Browse the repository at this point in the history
  • Loading branch information
iyzico-ci committed Oct 17, 2024
1 parent 386c38e commit b20fbd7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2.0.56
2.0.57
6 changes: 3 additions & 3 deletions src/Iyzipay/IyzipayResource.php
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ protected static function getHttpHeaders(Request $request, Options $options)
$rnd = uniqid();
array_push($header, "Authorization: " . self::prepareAuthorizationString($request, $options, $rnd));
array_push($header, "x-iyzi-rnd: " . $rnd);
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56");
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57");

return $header;
}
Expand All @@ -38,7 +38,7 @@ protected static function getHttpHeadersV2($uri, Request $request = null, Option
array_push($header, "Authorization: " . self::prepareAuthorizationStringV2($uri, $request, $options, $rnd));
$addRandom && array_push($header, "x-iyzi-rnd: " . $rnd);
array_push($header, "AUTHORIZATION_FALLBACK_HEADER: " . self::prepareAuthorizationString($request, $options, $rnd));
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56");
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57");

return $header;
}
Expand All @@ -53,7 +53,7 @@ protected static function getHttpHeadersIsV2($uri, Request $request = null, Opti
$rnd = uniqid();
array_push($header, "Authorization: " . self::prepareAuthorizationStringV2($uri, $request, $options, $rnd));
$addRandom && array_push($header, "x-iyzi-rnd: " . $rnd);
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.56");
array_push($header, "x-iyzi-client-version: " . "iyzipay-php-2.0.57");

return $header;
}
Expand Down

0 comments on commit b20fbd7

Please sign in to comment.