Skip to content

Commit b2a1d75

Browse files
committed
Remove Warning for Dynamic Property
Noted as an issue here: #12 (comment) Signed-off-by: Justin Yost <[email protected]>
1 parent 5ab2c8f commit b2a1d75

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

README.md

+1
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ We have not changed the API in any way, however we did cleanup portions of the c
1717
* Replaced usage of `\GuzzleHttp\Psr7\build_query` with `\GuzzleHttp\Psr7\Query::build` https://github.com/thewirecutter/paapi5-php-sdk/pull/8
1818
* Added Support for Guzzle 7 https://github.com/thewirecutter/paapi5-php-sdk/pull/6
1919
* Removed Deprecation Warnings when using PHP 8 https://github.com/thewirecutter/paapi5-php-sdk/pull/13
20+
* Removed Dynamic Property Creation Warnings when using PHP 8 https://github.com/thewirecutter/paapi5-php-sdk/pull/13
2021
* Updated PHP Minimum Version to PHP 8 https://github.com/thewirecutter/paapi5-php-sdk/pull/13
2122
* CodeSniffed to PSR-2 https://github.com/thewirecutter/paapi5-php-sdk/pull/13
2223
* Updated Dev Dependencies to reflect PHP 8 version requirement https://github.com/thewirecutter/paapi5-php-sdk/pull/13

src/com/amazon/paapi5/v1/auth/SignHelper.php

+1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@
2626
*/
2727
class SignHelper
2828
{
29+
private $config = null;
2930
private $host = null;
3031
private $accessKey = null;
3132
private $secretKey = null;

0 commit comments

Comments
 (0)