8
0

Commits vergleichen

..

Keine gemeinsamen Commits. "rel_1.x" und "1.0.2" haben vollständig unterschiedliche Historien.

2 geänderte Dateien mit 3 neuen und 7 gelöschten Zeilen

Datei anzeigen

@ -4,11 +4,7 @@ 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).
## [Unreleased](https://git.d3data.de/D3Public/klicktipp-php-client/compare/1.0.3...rel_1.x)
## [1.0.3](https://git.d3data.de/D3Public/klicktipp-php-client/compare/1.0.2...1.0.3) - 2025-03-06
### Fixed
- handle different cases in subscribed status
## [Unreleased](https://git.d3data.de/D3Public/klicktipp-php-client/compare/1.0.2...rel_1.x)
## [1.0.2](https://git.d3data.de/D3Public/klicktipp-php-client/compare/1.0.1...1.0.2) - 2025-02-05
### Added

Datei anzeigen

@ -84,7 +84,7 @@ class Subscriber extends Entity
public function isSubscribed(): bool
{
return strtolower($this->getStatus()) === strtolower(self::STATUS_SUBSCRIBED);
return $this->getStatus() === self::STATUS_SUBSCRIBED;
}
public function getBounce(): ?string
@ -94,7 +94,7 @@ class Subscriber extends Entity
public function isBounced(): bool
{
return strtolower($this->getBounce()) !== strtolower(self::BOUNCE_NOTBOUNCED);
return $this->getBounce() !== self::BOUNCE_NOTBOUNCED;
}
public function getDate(): ?DateTime