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 6cf9383 commit ea8f665Copy full SHA for ea8f665
src/Models/ShortLink.php
@@ -11,6 +11,7 @@
11
*
12
* @property string id
13
* @property string url
14
+ * @property string short_url
15
* @property DateTime|Carbon|null not_before
16
* @property DateTime|Carbon|null expire_at
17
* @property boolean enabled
src/Shortener.php
@@ -17,7 +17,7 @@ class Shortener
* 'expire_at' => null, // Link expiry date
18
* 'not_before' => null, // Link validity start date
19
* ]
20
- * @return array
+ * @return ShortLink
21
*/
22
public static function shorten(string $url, array $opt = [])
23
{
0 commit comments