| 1 |
<?php namespace TierPricingTable\Admin\Notifications\Notifications; |
| 2 |
|
| 3 |
use TierPricingTable\Core\ServiceContainerTrait; |
| 4 |
|
| 5 |
/** |
| 6 |
* Class Notifications |
| 7 |
* |
| 8 |
* @package TierPricingTable\Admin\Notifications |
| 9 |
*/ |
| 10 |
class YearUsingDiscount extends TwoMonthsUsingDiscount { |
| 11 |
|
| 12 |
use ServiceContainerTrait; |
| 13 |
|
| 14 |
public function getId(): string { |
| 15 |
return 'a-year-using-discount'; |
| 16 |
} |
| 17 |
|
| 18 |
public function getMonthsNumberToUsePluginToSeeNotification(): int { |
| 19 |
return 12; |
| 20 |
} |
| 21 |
} |
| 22 |
|