Skip to content

Commit eae013d

Browse files
committed
resolve conflicts in src classes
1 parent e8073c2 commit eae013d

40 files changed

+2492
-1648
lines changed

.github/run-package-tests.sh

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,20 @@
1515

1616
set -e
1717

18+
# USAGE:
19+
#
20+
# run-package-tests.sh [DIRECTORY] [PREFER_LOWEST]
21+
#
22+
# DIRECTORY: Optionally pass in a component directory and only run the script
23+
#. for that component.
24+
#
25+
# PREFER_LOWEST: can be "--prefer-lowest" or "--prefer-lowest-strict". When the
26+
# "--prefer-lowest-strict" flag is set, local package dependencies
27+
# are installed according to their version number in
28+
# `[Component]/VERSION`. This flag is set on the release PRs to
29+
#. ensure the dependencies for the upcoming release will be
30+
# configured correctly.
31+
1832
DIRS=$(find * -maxdepth 0 -type d -name '[A-Z]*')
1933
PREFER_LOWEST=""
2034
if [ "$#" -eq 1 ]; then

Core/src/ApiHelperTrait.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
*/
1818
namespace Google\Cloud\Core;
1919

20-
use Exception;
2120
use Google\ApiCore\ArrayTrait;
2221
use Google\ApiCore\Options\CallOptions;
2322
use Google\Protobuf\Internal\Message;

EventarcPublishing/src/V1/Client/PublisherClient.php

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -104,9 +104,7 @@ final class PublisherClient
104104
private const CODEGEN_NAME = 'gapic';
105105

106106
/** The default scopes required by the service. */
107-
public static $serviceScopes = [
108-
'https://www.googleapis.com/auth/cloud-platform',
109-
];
107+
public static $serviceScopes = ['https://www.googleapis.com/auth/cloud-platform'];
110108

111109
private static function getClientDefaults()
112110
{
@@ -260,8 +258,10 @@ public function publish(PublishRequest $request, array $callOptions = []): Publi
260258
*
261259
* @throws ApiException Thrown if the API call fails.
262260
*/
263-
public function publishChannelConnectionEvents(PublishChannelConnectionEventsRequest $request, array $callOptions = []): PublishChannelConnectionEventsResponse
264-
{
261+
public function publishChannelConnectionEvents(
262+
PublishChannelConnectionEventsRequest $request,
263+
array $callOptions = []
264+
): PublishChannelConnectionEventsResponse {
265265
return $this->startApiCall('PublishChannelConnectionEvents', $request, $callOptions)->wait();
266266
}
267267

Spanner/composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
"require": {
77
"php": "^8.1",
88
"ext-grpc": "*",
9-
"google/cloud-core": "^1.66",
9+
"google/cloud-core": "^1.68",
1010
"google/gax": "^1.38.0"
1111
},
1212
"require-dev": {

0 commit comments

Comments
 (0)