Skip to content

Commit 3a95278

Browse files
authored
fix: Update RequestOptions#redactedApiKey to stop exploding null. (stripe#1289)
1 parent 47cfc40 commit 3a95278

File tree

2 files changed

+9
-0
lines changed

2 files changed

+9
-0
lines changed

lib/Util/RequestOptions.php

+5
Original file line numberDiff line numberDiff line change
@@ -154,8 +154,13 @@ public static function parse($options, $strict = false)
154154
throw new \Stripe\Exception\InvalidArgumentException($message);
155155
}
156156

157+
/** @return string */
157158
private function redactedApiKey()
158159
{
160+
if (null === $this->apiKey) {
161+
return '';
162+
}
163+
159164
$pieces = \explode('_', $this->apiKey, 3);
160165
$last = \array_pop($pieces);
161166
$redactedLast = \strlen($last) > 4

tests/Stripe/Util/RequestOptionsTest.php

+4
Original file line numberDiff line numberDiff line change
@@ -168,5 +168,9 @@ public function testDebugInfo()
168168
$opts = RequestOptions::parse(['api_key' => '1234567890abcdefghijklmn']);
169169
$debugInfo = \print_r($opts, true);
170170
static::compatAssertStringContainsString('[apiKey] => ********************klmn', $debugInfo);
171+
172+
$opts = RequestOptions::parse([]);
173+
$debugInfo = \print_r($opts, true);
174+
static::compatAssertStringContainsString("[apiKey] => \n", $debugInfo);
171175
}
172176
}

0 commit comments

Comments
 (0)