Skip to content

Commit 54b41eb

Browse files
authored
Issue 235 fix (#236)
* Update secret(s) to pass multiple tests * codecov stds * Codecov stds
1 parent 9f92e18 commit 54b41eb

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

lib/Version.php

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
11
<?php
2+
3+
declare(strict_types=1);
4+
25
global $SEGMENT_VERSION;
3-
$SEGMENT_VERSION = "3.8.0";
6+
7+
$SEGMENT_VERSION = '3.8.0';

test/ConsumerLibCurlTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@ public function testRequestCompression(): void
9393
},
9494
];
9595

96-
$client = new Client('x', $options);
96+
$client = new Client('oq0vdlg7yi', $options);
9797

9898
# Should error out with debug on.
9999
self::assertTrue($client->track(['user_id' => 'some-user', 'event' => 'Socket PHP Event']));

test/ConsumerSocketTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ public function testDebugProblems(): void
164164
},
165165
];
166166

167-
$client = new Client('x', $options);
167+
$client = new Client('oq0vdlg7yi', $options);
168168

169169
// Should error out with debug on.
170170
self::assertTrue($client->track(['user_id' => 'some-user', 'event' => 'Socket PHP Event']));

0 commit comments

Comments
 (0)