Fixed a bug

This commit is contained in:
Cédric Belin
2018-11-03 19:50:17 +01:00
parent a28d8e05a6
commit ded2f54c96

View File

@ -273,7 +273,7 @@ class Repository implements \JsonSerializable {
* @param UriInterface|string|null $value The new URL for cloning this repository.
* @return $this This instance.
*/
function setSshlUrl($value): self {
function setSshUrl($value): self {
$this->sshUrl = is_string($value) ? new Uri($value) : $value;
return $this;
}