for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
declare(strict_types=1);
namespace Dandelion\Configuration;
class Repository
{
/**
* @var string
*/
protected $path;
protected $url;
protected $version;
* @return string
public function getPath(): string
return $this->path;
}
* @param string $path
*
* @return \Dandelion\Configuration\Repository
public function setPath(string $path): Repository
$this->path = $path;
return $this;
public function getUrl(): string
return $this->url;
* @param string $url
public function setUrl(string $url): Repository
$this->url = $url;
public function getVersion(): string
return $this->version;
* @param string $version
public function setVersion(string $version): Repository
$this->version = $version;