| Conditions | 4 |
| Paths | 4 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 8 |
| CRAP Score | 4 |
| Changes | 0 | ||
| 1 | <?php |
||
| 49 | 16 | public static function getByLastMod(\DateTimeInterface $last_mod): ?string |
|
| 50 | { |
||
| 51 | 16 | if ($last_mod < new \DateTime('-1 year')) { |
|
| 52 | 4 | return self::YEARLY; |
|
| 53 | } |
||
| 54 | |||
| 55 | 12 | if ($last_mod < new \DateTime('-1 month')) { |
|
| 56 | 4 | return self::MONTHLY; |
|
| 57 | } |
||
| 58 | |||
| 59 | 8 | if ($last_mod < new \DateTime('-1 week')) { |
|
| 60 | 4 | return self::WEEKLY; |
|
| 61 | } |
||
| 62 | |||
| 63 | 4 | return null; |
|
| 64 | } |
||
| 65 | |||
| 76 |