Skip to content

Commit b49c484

Browse files
drop unused PHPDoc @throws tag from __construct (#2886)
1 parent efedd21 commit b49c484

File tree

5 files changed

+0
-16
lines changed

5 files changed

+0
-16
lines changed

src/OfficialAccount/Server.php

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ class Server implements ServerInterface
2727
use InteractWithServerRequest;
2828
use RespondXmlMessage;
2929

30-
/**
31-
* @throws Throwable
32-
*/
3330
public function __construct(
3431
?ServerRequestInterface $request = null,
3532
protected ?Encryptor $encryptor = null,

src/OpenPlatform/Server.php

-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ class Server implements ServerInterface
3030

3131
protected ?Closure $defaultVerifyTicketHandler = null;
3232

33-
/**
34-
* @throws \Throwable
35-
*/
3633
public function __construct(
3734
protected Encryptor $encryptor,
3835
?ServerRequestInterface $request = null,

src/OpenWork/Server.php

-3
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,6 @@ class Server implements ServerInterface
3030

3131
protected ?Closure $defaultSuiteTicketHandler = null;
3232

33-
/**
34-
* @throws \Throwable
35-
*/
3633
public function __construct(
3734
protected Encryptor $encryptor,
3835
protected Encryptor $providerEncryptor,

src/Pay/Server.php

-4
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717
use Nyholm\Psr7\Response;
1818
use Psr\Http\Message\ResponseInterface;
1919
use Psr\Http\Message\ServerRequestInterface;
20-
use Throwable;
2120

2221
use function is_array;
2322
use function json_decode;
@@ -34,9 +33,6 @@ class Server implements ServerInterface
3433
use InteractWithHandlers;
3534
use InteractWithServerRequest;
3635

37-
/**
38-
* @throws Throwable
39-
*/
4036
public function __construct(
4137
protected MerchantInterface $merchant,
4238
?ServerRequestInterface $request,

src/Work/Server.php

-3
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,6 @@ class Server implements ServerInterface
2727
use InteractWithServerRequest;
2828
use RespondXmlMessage;
2929

30-
/**
31-
* @throws Throwable
32-
*/
3330
public function __construct(
3431
protected Encryptor $encryptor,
3532
?ServerRequestInterface $request = null,

0 commit comments

Comments
 (0)