Skip to content

Commit

Permalink
Update return type for call function
Browse files Browse the repository at this point in the history
  • Loading branch information
sc0Vu committed Aug 31, 2023
1 parent cc5e9a2 commit 116659e
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion src/Eth.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function __construct($provider)
*
* @param string $name
* @param array $arguments
* @return void
* @return void|\React\Promise\PromiseInterface
*/
public function __call($name, $arguments)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Net.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function __construct($provider)
*
* @param string $name
* @param array $arguments
* @return void
* @return void|\React\Promise\PromiseInterface
*/
public function __call($name, $arguments)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Personal.php
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ public function __construct($provider)
*
* @param string $name
* @param array $arguments
* @return void
* @return void|\React\Promise\PromiseInterface
*/
public function __call($name, $arguments)
{
Expand Down
2 changes: 1 addition & 1 deletion src/Shh.php
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ public function __construct($provider)
*
* @param string $name
* @param array $arguments
* @return void
* @return void|\React\Promise\PromiseInterface
*/
public function __call($name, $arguments)
{
Expand Down

0 comments on commit 116659e

Please sign in to comment.