From 7dc594be74c26b1b261de1bf97e6d6744264ce4a Mon Sep 17 00:00:00 2001 From: Avior Date: Thu, 12 Aug 2021 22:50:36 +0200 Subject: [PATCH] Added new field + small fix to README (#2) Signed-off-by: Avior --- README.md | 8 ++++---- src/Model/SerieResume.php | 5 +++++ 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 34f00a5..db0901c 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@

- + + Packagist Version + NPM Downloads @@ -53,6 +53,6 @@ TCGdex::$client = /* PSR18 ClientInterface */; // initialize the SDK with the language $tcgdex = new TCGdex("en"); -// Fetch you cards ! +// Fetch the cards ! $card = $tcgdex->fetchCard('1', 'Sword & Shield'); ``` diff --git a/src/Model/SerieResume.php b/src/Model/SerieResume.php index b0168ba..9fc8cde 100644 --- a/src/Model/SerieResume.php +++ b/src/Model/SerieResume.php @@ -15,6 +15,11 @@ class SerieResume extends Model */ public $name; + /** + * @var string|null + */ + public $logo; + /** * @return Serie */