Skip to content

Commit ea8f665

Browse files
committed
Minor fixes
1 parent 6cf9383 commit ea8f665

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

src/Models/ShortLink.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*
1212
* @property string id
1313
* @property string url
14+
* @property string short_url
1415
* @property DateTime|Carbon|null not_before
1516
* @property DateTime|Carbon|null expire_at
1617
* @property boolean enabled

src/Shortener.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class Shortener
1717
* 'expire_at' => null, // Link expiry date
1818
* 'not_before' => null, // Link validity start date
1919
* ]
20-
* @return array
20+
* @return ShortLink
2121
*/
2222
public static function shorten(string $url, array $opt = [])
2323
{

0 commit comments

Comments
 (0)