You are here

public function JanrainUserAddress::getStreet in Janrain Registration 8

File

src/User/JanrainUserAddress.php, line 20

Class

JanrainUserAddress
The user address.

Namespace

Drupal\janrain_capture\User

Code

public function getStreet() : string {
  return sprintf('%s %s %s %s', $this
    ->get('streetName1'), $this
    ->get('streetName2'), $this
    ->get('streetName3'), $this
    ->get('streetName4'));
}