CommissioningBodyService::getAddress PHP Method

getAddress() public method

Ensure we have a contact/address before returning.
public getAddress ( ) : Address | null
return Address | null
    public function getAddress()
    {
        if ($this->contact && $this->contact->address) {
            return $this->contact->address;
        }
    }