The PHPDoc of the feed date values are set as string|null but the methods are returning DateTime. I changed the PHPDoc for the feed to DateTime|null. It also looks like there are unit tests missing that check the null part of the return values, so I extended the ATOM tests.
The PHPDoc of the feed date values are set as
string|null
but the methods are returningDateTime
. I changed the PHPDoc for the feed toDateTime|null
. It also looks like there are unit tests missing that check thenull
part of the return values, so I extended the ATOM tests.