Passed
Branch feature/first-release (4212f2)
by Andrea Marco
10:46
created

LaravelClientRequest::matches()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 0
CRAP Score 2

Importance

Changes 1
Bugs 0 Features 0
Metric Value
cc 1
eloc 1
c 1
b 0
f 0
nc 1
nop 0
dl 0
loc 3
ccs 0
cts 2
cp 0
crap 2
rs 10
1
<?php
2
3
namespace Cerbero\JsonParser\Sources;
4
5
use Illuminate\Http\Client\Request;
6
use Psr\Http\Message\ResponseInterface;
7
8
/**
9
 * The Laravel client request source.
10
 *
11
 * @property-read Request $source
12
 */
13
class LaravelClientRequest extends Psr7Request
14
{
15
    /**
16
     * Retrieve the fetched HTTP response
17
     *
18
     * @return ResponseInterface
19
     */
20
    protected function fetchResponse(): ResponseInterface
21
    {
22
        return $this->sendRequest($this->source->toPsrRequest());
23
    }
24
25
    /**
26
     * Determine whether the JSON source can be handled
27
     *
28
     * @return bool
29
     */
30
    public function matches(): bool
31
    {
32
        return $this->source instanceof Request;
33
    }
34
}
35