for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Arthem\GoogleApi\Domain\Place\VO;
class Url
{
/**
* @var string
*/
private $url;
* @param string $url
public function __construct($url)
$this->url = $url;
}
* @return string
public function getUrl()
return $this->url;