GildedRose-Refactoring-Kata/swift/Sources/GildedRose/ItemSellInUpdater.swift
2020-08-17 22:38:57 +02:00

19 lines
287 B
Swift

//
// File.swift
//
//
// Created by Manali Mogre on 17/08/2020.
//
import Foundation
protocol ItemSellInUpdater: CustomisedItem{
func reduceSellInDays(by days: Int)
}
extension ItemSellInUpdater {
func reduceSellInDays(by days: Int) {
item.sellIn -= days
}
}