0.18.0
This release includes changes to some interfaces. This is a breaking change if you use these interfaces in your own code.
Added
- The id of an item can be set/get using magic accessors just like the attributes #51.
Changed
- Added (optional) type hints to several interfaces.
N.B. This is a breaking change if you implement some of the interfaces yourself. Please look at the interfaces and make the appropriate changes in your implementation. - Renamed
deleteById
method to simplydelete
and removed the 'old' implementation inRepositoryInterface
.
N.B. This is a breaking change and all calls todeleteById
should simply be changed todelete
as the signature is unchanged. The old behaviour ofdelete
is not supported any more.