8000
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 c6a970d commit eab88ebCopy full SHA for eab88eb
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