Skip to content
This repository was archived by the owner on Jan 8, 2024. It is now read-only.

Commit daff520

Browse files
authored
Fix Doc Blocks
1 parent 726435b commit daff520

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

Diff for: src/Client.php

+5-5
Original file line numberDiff line numberDiff line change
@@ -18,18 +18,18 @@
1818
class Client implements HttpClient
1919
{
2020
/**
21-
* @var CakeClient
21+
* @var \Cake\Http\Client
2222
*/
2323
private $client;
2424

2525
/**
26-
* @var ResponseFactory
26+
* @var \Http\Message\ResponseFactory
2727
*/
2828
private $responseFactory;
2929

3030
/**
31-
* @param CakeClient|null $client
32-
* @param ResponseFactory|null $responseFactory
31+
* @param \Cake\Http\Client|null $client
32+
* @param \Http\Message\ResponseFactory|null $responseFactory
3333
*/
3434
public function __construct(CakeClient $client = null, ResponseFactory $responseFactory = null)
3535
{
@@ -38,7 +38,7 @@ public function __construct(CakeClient $client = null, ResponseFactory $response
3838
}
3939

4040
/**
41-
* {@inheritdoc}
41+
* @inheritdoc
4242
*/
4343
public function sendRequest(RequestInterface $request)
4444
{

0 commit comments

Comments
 (0)