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 4b090c6 commit 0f4bb75Copy full SHA for 0f4bb75
src/TwitterDirectMessage.php
@@ -20,7 +20,7 @@ class TwitterDirectMessage
20
/*
21
* @param string $content
22
*/
23
- public function __construct(string $to, string $content)
+ public function __construct($to, string $content)
24
{
25
$this->to = $to;
26
$this->content = $content;
src/TwitterStatusUpdate.php
@@ -25,7 +25,7 @@ class TwitterStatusUpdate
27
28
- public function __construct(string $content, array $imagePaths = null)
+ public function __construct($content, array $imagePaths = null)
29
30
31
$this->imagePaths = $imagePaths ? collect($imagePaths) : null;
0 commit comments