Brent Shaffer
Brent Shaffer
see https://github.com/googleapis/google-cloud-php/pull/5581 We would like to separate `Request` and `Response` messages into their own categories in the Cloud RAD documentation. However, the current signatures / generated code do not have...
For the Compute API, the insert/update/delete methods have the following order: ```php // inserting an object (Compute) $client->insert($message, 'PROJECT_ID', 'ZONE'); // fetching / deleting an object (Compute) $client->get('ITEM_NAME', 'PROJECT_ID', 'ZONE');...
This is a follow up to [this thread](https://github.com/GoogleCloudPlatform/php-docs-samples/pull/961) regarding better error handling in this library when `bcmath` isn't installed. Another solution is to find a native PHP replacement for the...
See https://github.com/googleapis/gax-php/issues/458 Users are hoping to configure GAPIC clients from the Ads client surface, but it's currently not possible. Users need to create the GAPIC clients directly in order to...
addresses https://github.com/GoogleCloudPlatform/php-docs-samples/issues/1962 and https://github.com/GoogleCloudPlatform/php-docs-samples/issues/1961
Some of our Cloud Functions samples still use PHP 7.4 - https://github.com/GoogleCloudPlatform/php-docs-samples/blob/add395fbcfb6cc55f3f638b025ddc3d6b6d31f59/functions/helloworld_storage/composer.json#L3 - https://github.com/GoogleCloudPlatform/php-docs-samples/blob/add395fbcfb6cc55f3f638b025ddc3d6b6d31f59/functions/typed_greeting/composer.json#L3 - https://github.com/GoogleCloudPlatform/php-docs-samples/blob/add395fbcfb6cc55f3f638b025ddc3d6b6d31f59/functions/helloworld_pubsub/composer.json#L3 - https://github.com/GoogleCloudPlatform/php-docs-samples/blob/add395fbcfb6cc55f3f638b025ddc3d6b6d31f59/functions/helloworld_http/composer.json#L3 As this version of PHP is now EOL, we need to upgrade...
Our [helloworld Dockerfile](https://github.com/GoogleCloudPlatform/php-docs-samples/blob/HEAD/run/helloworld/Dockerfile) for Cloud Run currently uses PHP 8.0. As this version of PHP is now EOL, we need to upgrade this to the more current versions of PHP...
In preparation for the GA of the new client surface, upgrade all remaining samples to use the new surface. This will allow us to run tests and catch any issues...