From ded2f54c96d4fca9669846ed2a1f111184d06113 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Belin?= Date: Sat, 3 Nov 2018 19:50:17 +0100 Subject: [PATCH] Fixed a bug --- lib/models/Repository.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/models/Repository.php b/lib/models/Repository.php index f4aafbc..2dabc73 100644 --- a/lib/models/Repository.php +++ b/lib/models/Repository.php @@ -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; }