Skip to content

Commit

Permalink
Commit from GitHub Actions (style-fix)
Browse files Browse the repository at this point in the history
  • Loading branch information
cesargb committed May 5, 2024
1 parent 6e22c4a commit 78420c9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions src/MagicLink.php
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ public function setActionAttribute($value)
public function baseUrl(?string $baseUrl): self
{
$this->attributes['base_url'] = rtrim($baseUrl, '/') . '/';

return $this;
}

Expand Down
2 changes: 1 addition & 1 deletion tests/MagicLinkTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ public function test_create_magiclink_with_custom_base_url()

$custom_base_url = "http:https://example.com";
$magiclink->baseUrl($custom_base_url);

$this->assertStringContainsString($custom_base_url, $magiclink->url);
}
}

0 comments on commit 78420c9

Please sign in to comment.