Payu\Builder\BuilderAbstract::buildCard PHP Method

buildCard() public method

public buildCard ( $number, $cvv, $month, $year, null $owner = null )
$number
$cvv
$month
$year
$owner null
    public function buildCard($number, $cvv, $month, $year, $owner = null)
    {
        $this->card = new Card($number, $cvv, $month, $year, $owner);
        return $this;
    }