Skip to content

Commit

Permalink
Merge pull request #8842 from kenjis/docs-update-curl-sample-code
Browse files Browse the repository at this point in the history
docs: update deprecated method in sample code in CURLRequest
  • Loading branch information
kenjis authored Apr 30, 2024
2 parents a59441f + 694aa97 commit f2aaa69
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions user_guide_src/source/libraries/curlrequest/009.php
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
<?php

$code = $response->getStatusCode(); // 200
$reason = $response->getReason(); // OK
$code = $response->getStatusCode(); // 200
$reason = $response->getReasonPhrase(); // OK

0 comments on commit f2aaa69

Please sign in to comment.