Skip to content

Commit 0129403

Browse files
committed
ci: remove #[\Override]
1 parent ffeed58 commit 0129403

File tree

2 files changed

+0
-5
lines changed

2 files changed

+0
-5
lines changed

src/Client.php

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,13 +43,11 @@ public static function createWithConfig(array $config): Client
4343
return new self(self::buildClient($config));
4444
}
4545

46-
#[\Override]
4746
public function sendRequest(RequestInterface $request): ResponseInterface
4847
{
4948
return $this->sendAsyncRequest($request)->wait();
5049
}
5150

52-
#[\Override]
5351
public function sendAsyncRequest(RequestInterface $request)
5452
{
5553
$promise = $this->guzzle->sendAsync($request);

src/Promise.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,19 +70,16 @@ public function __construct(PromiseInterface $promise, RequestInterface $request
7070
});
7171
}
7272

73-
#[\Override]
7473
public function then(?callable $onFulfilled = null, ?callable $onRejected = null)
7574
{
7675
return new static($this->promise->then($onFulfilled, $onRejected), $this->request);
7776
}
7877

79-
#[\Override]
8078
public function getState()
8179
{
8280
return $this->state;
8381
}
8482

85-
#[\Override]
8683
public function wait($unwrap = true)
8784
{
8885
$this->promise->wait(false);

0 commit comments

Comments
 (0)