class Tanker::PhoneNumberVerificationMethod

Attributes

phone_number[R]

Public Class Methods

new(phone_number) click to toggle source
Calls superclass method
# File lib/tanker/core/verification_method.rb, line 32
def initialize(phone_number)
  super()
  @phone_number = phone_number
end

Public Instance Methods

==(other) click to toggle source
Calls superclass method Tanker::VerificationMethod#==
# File lib/tanker/core/verification_method.rb, line 37
def ==(other)
  super && phone_number == other.phone_number
end