| Total Complexity | 4 |
| Total Lines | 24 |
| Duplicated Lines | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 8 | class PlanPrice extends Model |
||
| 9 | { |
||
| 10 | use LogsActivity; |
||
| 11 | protected $table = 'plan_prices'; |
||
| 12 | protected $fillable = ['plan_id', 'currency', 'add_price', 'renew_price']; |
||
| 13 | protected static $logName = 'Plan Price'; |
||
| 14 | protected static $logAttributes = ['plan_id', 'currency', 'add_price', 'renew_price']; |
||
| 15 | protected static $logOnlyDirty = true; |
||
| 16 | |||
| 17 | public function getDescriptionForEvent(string $eventName): string |
||
| 37 |