diff options
author | Stanley Cheung <stanleycheung@google.com> | 2016-09-01 13:44:00 -0700 |
---|---|---|
committer | Stanley Cheung <stanleycheung@google.com> | 2016-09-06 11:49:41 -0700 |
commit | 47110750bc317eeac12ab89204c05755e8e84dd4 (patch) | |
tree | 7b81152ad54962b50787a079ddf5440f1e68c1fe /src/php/tests/interop/interop_client.php | |
parent | 74c92f62d9e8d2be9f74b5fd349b6a5c519cf82f (diff) |
php: minor error initializing a variable
Diffstat (limited to 'src/php/tests/interop/interop_client.php')
-rwxr-xr-x | src/php/tests/interop/interop_client.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/php/tests/interop/interop_client.php b/src/php/tests/interop/interop_client.php index c94ba61296..94ceeda02c 100755 --- a/src/php/tests/interop/interop_client.php +++ b/src/php/tests/interop/interop_client.php @@ -108,7 +108,7 @@ function performLargeUnary($stub, $fillUsername = false, $fillOauthScope = false $request->setFillUsername($fillUsername); $request->setFillOauthScope($fillOauthScope); - $options = false; + $options = []; if ($callback) { $options['call_credentials_callback'] = $callback; } |