| Conditions | 3 |
| Paths | 3 |
| Total Lines | 12 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 0 |
| CRAP Score | 12 |
| Changes | 0 | ||
| 1 | <?php declare(strict_types=1); |
||
| 40 | public function searchLastModified(FeedInterface $feed) : \DateTime |
||
| 41 | { |
||
| 42 | $latest = new \DateTime('@0'); |
||
| 43 | |||
| 44 | foreach ($feed as $item) { |
||
| 45 | if ($item->getLastModified() > $latest) { |
||
| 46 | $latest = $item->getLastModified(); |
||
| 47 | } |
||
| 48 | } |
||
| 49 | |||
| 50 | return $latest; |
||
| 51 | } |
||
| 52 | } |
||
| 53 |