| 1 | <?php |
||
| 10 | class Wordlift_Property_Entity_Reference { |
||
| 11 | |||
| 12 | /** |
||
| 13 | * The URL associated with this entity reference. |
||
| 14 | * |
||
| 15 | * @since 3.8.0 |
||
| 16 | * @access private |
||
| 17 | * @var string $url The URL associated with the entity reference. |
||
| 18 | */ |
||
| 19 | private $url; |
||
| 20 | |||
| 21 | /** |
||
| 22 | * Create a Wordlift_Property_Entity_Reference instance with the provided URL. |
||
| 23 | * |
||
| 24 | * @since 3.8.0 |
||
| 25 | * |
||
| 26 | * @param string $url The URL. |
||
| 27 | */ |
||
| 28 | public function __construct( $url ) { |
||
| 33 | |||
| 34 | /** |
||
| 35 | * Get the URL associated with this entity reference. |
||
| 36 | * |
||
| 37 | * @since 3.8.0 |
||
| 38 | * @return string The URL associated with the entity reference. |
||
| 39 | */ |
||
| 40 | public function getURL() { |
||
| 44 | |||
| 45 | } |