From 109bd4cd4e44c86685697af52e8fd93f232ec465 Mon Sep 17 00:00:00 2001 From: nkl-kst <24235974+nkl-kst@users.noreply.github.com> Date: Mon, 26 Sep 2022 07:18:11 +0200 Subject: [PATCH] Added missing property `strStatus` in `Livescore` entity (v1.3.5) --- CHANGELOG.md | 5 +++++ src/Entity/Event/Livescore.php | 1 + 2 files changed, 6 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 575974e..fbe095f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [1.3.5] - 2022-09-26 + +### Added +- Missing property `strStatus` in `Livescore` entity + ## [1.3.4] - 2022-09-14 ### Added diff --git a/src/Entity/Event/Livescore.php b/src/Entity/Event/Livescore.php index 126b402..d69967c 100644 --- a/src/Entity/Event/Livescore.php +++ b/src/Entity/Event/Livescore.php @@ -23,6 +23,7 @@ class Livescore public ?int $idPlayer; public ?int $intEventScore; public ?int $intEventScoreTotal; + public string $strStatus; public string $strProgress; public string $strEventTime; public DateTime $dateEvent;