We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 438c7e4 + 0edb3b2 commit d0f2b54Copy full SHA for d0f2b54
1 file changed
src/Domrobot.php
@@ -68,6 +68,20 @@ public function useOte(): self
68
return $this;
69
}
70
71
+ /**
72
+ * Configures the Domrobot to use a specified URL as endpoint.
73
+ *
74
+ * @param string $url
75
76
+ * @return self
77
+ */
78
+ public function useUrl(string $url): self
79
+ {
80
+ $this->url = $url;
81
+
82
+ return $this;
83
+ }
84
85
/**
86
* @return bool Is the Domrobot configured to use the live endpoint?
87
*/
0 commit comments