Skip to content

Commit 4e97127

Browse files
committed
fix formating in Upgrading
1 parent 0056791 commit 4e97127

1 file changed

Lines changed: 7 additions & 8 deletions

File tree

UPGRADING.md

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ possible.
1717
* [Scalar types](https://www.tutorialspoint.com/php7/php7_scalartype_declarations.htm) for scalar function arguments
1818
* [Strict typing](https://www.php.net/manual/en/functions.arguments.php#functions.arguments.type-declaration.strict) via `declare(strict_types=1)`
1919
* private constants
20-
* mark classes as internal using `@internal `and `final`
20+
* **TODO**: mark classes as internal using `@internal `and `final`
2121

22-
#### Improved Caching {#improved-caching}
22+
#### Improved Caching
2323

2424
* Implement caching in credentials instead of as a wrapper:
2525

26-
```php
26+
```php
2727
$auth = new GoogleClient();
2828
$credentials = $auth->makeCredentials([
2929
'cache' => new MemoryCachePool,
@@ -43,7 +43,7 @@ $credentials = $auth->makeCredentials([
4343
* Automatic retry for token expiration API exception
4444

4545

46-
#### Improved HTTP handling {#improved-http-handling}
46+
#### Improved HTTP handling
4747

4848
* Provides an abstraction from Guzzle HTTP Client
4949
* Using the composer "[replace](https://stackoverflow.com/questions/18882201/how-does-the-replace-property-work-with-composer)" keyword, users can ignore sub-dependencies such as Guzzle in favor of a separate HTTP library
@@ -261,16 +261,15 @@ $http = new CredentialsClient(new OAuthCredentials($oauth));
261261
$http->send(new Request('GET', 'https://www.googleapis.com/drive/v3/files'));
262262
```
263263

264-
### Breaking Changes {#breaking-changes}
264+
### Breaking Changes
265265

266-
#### Dropped Library Support {#dropped-library-support}
266+
#### Dropped Library Support
267267

268268
* Drop support for Guzzle 5
269269
* Drop support for `firebase\php-jwt` 2.0, 3.0, and 4.0
270270
* Drop support for App Engine `php55`
271271

272-
#### Class/Interface Renames {#class-interface-renames}
273-
272+
#### Class/Interface Renames
274273

275274
<table>
276275
<tr>

0 commit comments

Comments
 (0)