| Conditions | 5 |
| Paths | 3 |
| Total Lines | 16 |
| Lines | 0 |
| Ratio | 0 % |
| Tests | 9 |
| CRAP Score | 5 |
| Changes | 0 | ||
| 1 | <?php |
||
| 24 | 6 | public function isEligible(DiscountContract $discount) |
|
| 25 | { |
||
| 26 | 6 | $now = Carbon::now(); |
|
| 27 | |||
| 28 | 6 | $startsAt = $discount->getStartsAt(); |
|
| 29 | 6 | if (null !== $startsAt && $now < $startsAt) { |
|
| 30 | 2 | return false; |
|
| 31 | } |
||
| 32 | |||
| 33 | 6 | $endsAt = $discount->getEndsAt(); |
|
| 34 | 6 | if (null !== $endsAt && $now > $endsAt) { |
|
| 35 | 3 | return false; |
|
| 36 | } |
||
| 37 | |||
| 38 | 6 | return true; |
|
| 39 | } |
||
| 40 | } |
||
| 41 |