# packeta/trunk/src/Packetery/Core/Entity/Address.php

Packeta, version trunk. 210 lines.

- Page: https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Core/Entity/Address.php
- Raw: https://pluginprobe.com/plugins/packeta/trunk/raw/src/Packetery/Core/Entity/Address.php
- Modified: 2025-03-10T10:47:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/packeta/trunk/code/src/Packetery/Core/Entity/Address.php#L10-L20`.

```php
<?php
/**
 * Class Address.
 *
 * @package Packetery\Entity
 */

declare( strict_types=1 );

namespace Packetery\Core\Entity;

/**
 * Class Address.
 *
 * @package Packetery\Entity
 */
class Address {

	/**
	 * Customer street for address delivery.
	 *
	 * @var string|null
	 */
	private $street;

	/**
	 * Customer city for address delivery.
	 *
	 * @var string|null
	 */
	private $city;

	/**
	 * Customer zip for address delivery.
	 *
	 * @var string|null
	 */
	private $zip;

	/**
	 * Customer house number.
	 *
	 * @var string|null
	 */
	private $houseNumber;

	/**
	 * Longitude.
	 *
	 * @var string|null
	 */
	private $longitude;

	/**
	 * Latitude.
	 *
	 * @var string|null
	 */
	private $latitude;

	/**
	 * County.
	 *
	 * @var string|null
	 */
	private $county;

	/**
	 * Address constructor.
	 *
	 * @param string|null $street Street.
	 * @param string|null $city City.
	 * @param string|null $zip Zip.
	 */
	public function __construct( ?string $street, ?string $city, ?string $zip ) {
		$this->street = $street;
		$this->city   = $city;
		$this->zip    = $zip;
	}

	/**
	 * Gets full address.
	 *
	 * @return string
	 */
	public function getFullAddress(): string {
		return sprintf(
			'%s%s, %s %s',
			$this->street,
			( $this->houseNumber !== null ? ' ' . $this->houseNumber : '' ),
			$this->city,
			$this->zip
		);
	}

	/**
	 * Gets street.
	 *
	 * @return string|null
	 */
	public function getStreet(): ?string {
		return $this->street;
	}

	/**
	 * Gets city.
	 *
	 * @return string|null
	 */
	public function getCity(): ?string {
		return $this->city;
	}

	/**
	 * Gets zip.
	 *
	 * @return string|null
	 */
	public function getZip(): ?string {
		return $this->zip;
	}

	/**
	 * Gets house number.
	 *
	 * @return string|null
	 */
	public function getHouseNumber(): ?string {
		return $this->houseNumber;
	}

	/**
	 * Sets house number.
	 *
	 * @param string|null $houseNumber House number.
	 */
	public function setHouseNumber( ?string $houseNumber ): void {
		$this->houseNumber = $houseNumber;
	}

	/**
	 * Gets longitude.
	 *
	 * @return string|null
	 */
	public function getLongitude(): ?string {
		return $this->longitude;
	}

	/**
	 * Sets longitude.
	 *
	 * @param string|null $longitude Longitude.
	 *
	 * @return void
	 */
	public function setLongitude( ?string $longitude ): void {
		$this->longitude = $longitude;
	}

	/**
	 * Gets latitude.
	 *
	 * @return string|null
	 */
	public function getLatitude(): ?string {
		return $this->latitude;
	}

	/**
	 * Sets latitude.
	 *
	 * @param string|null $latitude Latitude.
	 *
	 * @return void
	 */
	public function setLatitude( ?string $latitude ): void {
		$this->latitude = $latitude;
	}

	/**
	 * Gets county.
	 *
	 * @return string|null
	 */
	public function getCounty(): ?string {
		return $this->county;
	}

	/**
	 * Sets county.
	 *
	 * @param string|null $county County.
	 *
	 * @return void
	 */
	public function setCounty( ?string $county ): void {
		$this->county = $county;
	}

	/**
	 * Export.
	 *
	 * @return array<string, string|null>
	 */
	public function export(): array {
		return get_object_vars( $this );
	}
}

```
