Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ok fixes #198

Merged
merged 18 commits into from
Sep 23, 2024
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit Hold shift + click to select a range
0d2af3b
getHttpHeaders function added
osman-keser Sep 18, 2024
a9557cf
Function updated to allow nullable request
osman-keser Sep 18, 2024
e032a2a
Function updated to allow nullable request
osman-keser Sep 18, 2024
8d68c51
Fixes to pass tests in accordance with respective request class
osman-keser Sep 18, 2024
8f06af8
fixes failure "Iyzipay\Tests\Request\CreateBasicBkmInitializeRequestT…
osman-keser Sep 18, 2024
9b19e7c
fixes failure "6) Iyzipay\Tests\Request\CreateBlacklistedCardRequestT…
osman-keser Sep 18, 2024
b2ea55b
fixes failure "7) Iyzipay\Tests\Request\CreateCheckoutFormInitializeR…
osman-keser Sep 18, 2024
cc8e362
fixes failure "8) Iyzipay\Tests\Request\CreateIyziupFormInitializeReq…
osman-keser Sep 18, 2024
3d4f8c9
fixes failure "9) Iyzipay\Tests\Request\CreateIyziupFormInitializeReq…
osman-keser Sep 18, 2024
da8a1a4
fixes failure "10) Iyzipay\Tests\Request\Subscription\SubscriptionUpg…
osman-keser Sep 18, 2024
9b5a052
fixes failure "11) Iyzipay\Tests\Request\UpdateBlacklistedCardRequest…
osman-keser Sep 18, 2024
7d39bc8
fixes failure "5) Iyzipay\Tests\Request\CreateBasicPaymentRequestTest…
osman-keser Sep 18, 2024
5c15f6c
fixes failure "6) Iyzipay\Tests\Request\CreateBlacklistedCardRequestT…
osman-keser Sep 18, 2024
cfd4a4f
fixes failure "1) Iyzipay\Tests\DefaultHttpClientTest::test_should_ch…
osman-keser Sep 18, 2024
46780c9
fixes error 1 "Call to undefined method..."
osman-keser Sep 23, 2024
5f23bee
fixes error 2 "file_get_contents/.... Failed to open stream"
osman-keser Sep 23, 2024
ba61a65
Merge branch 'ok-complete' into ok-fixes
osman-keser Sep 23, 2024
e6d4d0d
Put, Patch fix
osman-keser Sep 23, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tests/Iyzipay/Tests/IyzipayResourceTestCase.php
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public function setUp(): void
parent::setUp();

$this->httpClient = $this->getMockBuilder("HttpClient")
->setMethods(array("get", "getV2","post", "patch", "delete", "exchange"))
->setMethods(array("get", "getV2","post", "put", "patch", "delete", "exchange"))
->getMock();

ApiResource::setHttpClient($this->httpClient);
Expand Down