Skip to content

Commit

Permalink
Made strSportThumb property in Sport entity nullable
Browse files Browse the repository at this point in the history
  • Loading branch information
nkl-kst committed Jun 28, 2021
1 parent 494e5d3 commit 0fa346e
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,14 @@ 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.0.5] - Unreleased
## [1.0.5] - 2021-06-28

### Changed
- Changed PHPStan level to 6 (fixed all parameters and return type hints)

### Fixed
- Made `strSportThumb` property in `Sport` entity nullable

## [1.0.4] - 2021-06-21

### Fixed
Expand Down
2 changes: 1 addition & 1 deletion src/Entity/Sport.php
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ class Sport
public int $idSport;
public string $strSport;
public string $strFormat;
public string $strSportThumb;
public ?string $strSportThumb;
public string $strSportThumbGreen;
public string $strSportDescription;
}

0 comments on commit 0fa346e

Please sign in to comment.