App\Ninja\PaymentDrivers\BraintreePaymentDriver::customerData PHP Method

customerData() private method

private customerData ( )
    private function customerData()
    {
        return ['firstName' => array_get($this->input, 'first_name') ?: $this->contact()->first_name, 'lastName' => array_get($this->input, 'last_name') ?: $this->contact()->last_name, 'company' => $this->client()->name, 'email' => $this->contact()->email, 'phone' => $this->contact()->phone, 'website' => $this->client()->website];
    }