8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents f3d8e3d + eab88eb commit 02d8b71Copy full SHA for 02d8b71
src/Clipboard.php
@@ -41,7 +41,7 @@ public function html($html = null): string
41
return $html;
42
}
43
44
- public function image($image = null): string
+ public function image($image = null): string|null
45
{
46
if (is_null($image)) {
47
return $this->client->get('clipboard/image')->json('image');
src/Facades/Clipboard.php
@@ -8,7 +8,7 @@
8
* @method static void clear()
9
* @method static string text($text = null)
10
* @method static string html($html = null)
11
- * @method static string image($image = null)
+ * @method static string|null image($image = null)
12
*/
13
class Clipboard extends Facade
14
0 commit comments