We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc00c04 commit 05ce9f1Copy full SHA for 05ce9f1
tests/bootstrap.php
@@ -4,6 +4,11 @@
4
*/
5
require_once __DIR__ . '/../vendor/autoload.php';
6
7
+// Prevent log messages surfacing when error_log hasn't been configured.
8
+if (!ini_get('error_log')) {
9
+ ini_set('error_log', '/dev/null');
10
+}
11
+
12
define('SDK_ID', '990a3996-5762-4e8a-aa64-cb406fdb0e68');
13
define('RECEIPT_JSON', __DIR__ . '/sample-data/receipt.json');
14
define('INVALID_YOTI_CONNECT_TOKEN', 'sdfsdfsdasdajsopifajsd=');
0 commit comments