for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* @since 3.8.0
* @package Wordlift
*/
class Wordlift_Property_Entity_Reference {
* The URL associated with this entity reference.
*
* @access private
* @var string $url The URL associated with the entity reference.
private $url;
* Create a Wordlift_Property_Entity_Reference instance with the provided URL.
* @param string $url The URL.
public function __construct( $url ) {
$this->url = $url;
}
* Get the URL associated with this entity reference.
* @return string The URL associated with the entity reference.
public function getURL() {
return $this->url;