lib/yardi/parameter/contact_info.rb in yardi-4.0.8 vs lib/yardi/parameter/contact_info.rb in yardi-4.11.0

- old
+ new

@@ -3,10 +3,10 @@ class ContactInfo attr_reader :email, :cell_phone, :home_phone def initialize(email:, cell_phone: nil, home_phone: nil) @email = email - @cell_phone= cell_phone + @cell_phone = cell_phone @home_phone = home_phone end end end end