We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e22c4a commit 78420c9Copy full SHA for 78420c9
src/MagicLink.php
@@ -74,6 +74,7 @@ public function setActionAttribute($value)
74
public function baseUrl(?string $baseUrl): self
75
{
76
$this->attributes['base_url'] = rtrim($baseUrl, '/') . '/';
77
+
78
return $this;
79
}
80
tests/MagicLinkTest.php
@@ -127,7 +127,7 @@ public function test_create_magiclink_with_custom_base_url()
127
128
$custom_base_url = "http://example.com";
129
$magiclink->baseUrl($custom_base_url);
130
-
131
$this->assertStringContainsString($custom_base_url, $magiclink->url);
132
133
0 commit comments