We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 974ef26 commit 8841e9eCopy full SHA for 8841e9e
1 file changed
src/Client.php
@@ -52,7 +52,11 @@
52
*/
53
class Client
54
{
55
- const LIBVER = "2.18.3";
+ // Release Please updates the VERSION constant. This workaround ensures the LIBVER constant
56
+ // will be updated for each release.
57
+ private const VERSION = '2.18.3';
58
+ const LIBVER = self::VERSION;
59
+
60
const USER_AGENT_SUFFIX = "google-api-php-client/";
61
const OAUTH2_REVOKE_URI = 'https://oauth2.googleapis.com/revoke';
62
const OAUTH2_TOKEN_URI = 'https://oauth2.googleapis.com/token';
0 commit comments