Skip to content

Commit 72e6422

Browse files
committed
Fixed line width
1 parent 605be82 commit 72e6422

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/MagicLink.php

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,9 @@ protected static function boot()
2828

2929
protected static function getTokenLength()
3030
{
31-
return config('magiclink.token.length', 64) <= 255 ? config('magiclink.token.length', 64) : 255;
31+
return config('magiclink.token.length', 64) <= 255
32+
? config('magiclink.token.length', 64)
33+
: 255;
3234
}
3335

3436
public function getActionAttribute($value)

0 commit comments

Comments
 (0)