Skip to content

Commit ed3e338

Browse files
Correct '=' in PHP
1 parent 8366f97 commit ed3e338

File tree

104 files changed

+104
-104
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+104
-104
lines changed

PHP/Complex Flow Examples/decrypt-add-reencrypt.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2222
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2323
*/
24-
//$apiUrl "https://eu-api.pdfrest.com";
24+
//$apiUrl = "https://eu-api.pdfrest.com";
2525

2626
$client = new Client();
2727

PHP/Complex Flow Examples/merge-different-file-types.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2525
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2626
*/
27-
//$apiUrl "https://eu-api.pdfrest.com";
27+
//$apiUrl = "https://eu-api.pdfrest.com";
2828

2929
$client = new Client();
3030

PHP/Complex Flow Examples/ocr-with-extract-text.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2222
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2323
*/
24-
//$apiUrl "https://eu-api.pdfrest.com";
24+
//$apiUrl = "https://eu-api.pdfrest.com";
2525

2626
$client = new Client();
2727

PHP/Complex Flow Examples/pdfa-3b-with-attachment.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2424
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2525
*/
26-
//$apiUrl "https://eu-api.pdfrest.com";
26+
//$apiUrl = "https://eu-api.pdfrest.com";
2727

2828
$client = new Client();
2929

PHP/Complex Flow Examples/preserve-word-document.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2020
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2121
*/
22-
//$apiUrl "https://eu-api.pdfrest.com";
22+
//$apiUrl = "https://eu-api.pdfrest.com";
2323

2424

2525
$client = new Client();

PHP/Complex Flow Examples/protected-watermark.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2020
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2121
*/
22-
//$apiUrl "https://eu-api.pdfrest.com";
22+
//$apiUrl = "https://eu-api.pdfrest.com";
2323

2424
$client = new Client();
2525

PHP/Complex Flow Examples/redact-preview-and-finalize.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@
2020
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
2121
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
2222
*/
23-
//$apiUrl "https://eu-api.pdfrest.com";
23+
//$apiUrl = "https://eu-api.pdfrest.com";
2424

2525

2626
$client = new Client();

PHP/Endpoint Examples/JSON Payload/batch-delete.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
1212
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1313
*/
14-
//$apiUrl "https://eu-api.pdfrest.com";
14+
//$apiUrl = "https://eu-api.pdfrest.com";
1515

1616

1717
$delete_client = new Client(['http_errors' => false]);

PHP/Endpoint Examples/JSON Payload/bmp.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
1212
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1313
*/
14-
//$apiUrl "https://eu-api.pdfrest.com";
14+
//$apiUrl = "https://eu-api.pdfrest.com";
1515

1616
$upload_client = new Client(['http_errors' => false]);
1717
$upload_headers = [

PHP/Endpoint Examples/JSON Payload/compressed-pdf.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/* For GDPR compliance and enhanced performance for European users, you can switch to the EU-based service by uncommenting the URL below.
1212
* For more information visit https://pdfrest.com/pricing#how-do-eu-gdpr-api-calls-work
1313
*/
14-
//$apiUrl "https://eu-api.pdfrest.com";
14+
//$apiUrl = "https://eu-api.pdfrest.com";
1515

1616
$upload_client = new Client(['http_errors' => false]);
1717
$upload_headers = [

0 commit comments

Comments
 (0)