Passed
Push — master ( 8e04a1...918acc )
by Gerrit
02:12
created

createArgumentFromArray()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4

Duplication

Lines 0
Ratio 0 %

Code Coverage

Tests 2
CRAP Score 1

Importance

Changes 0
Metric Value
dl 0
loc 4
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
crap 1
1
<?php
2
/**
3
 * Copyright (C) 2018 Gerrit Addiks.
4
 * This package (including this file) was released under the terms of the GPL-3.0.
5
 * You should have received a copy of the GNU General Public License along with this program.
6
 * If not, see <http://www.gnu.org/licenses/> or send me a mail so i can send you a copy.
7
 *
8
 * @license GPL-3.0
9
 *
10
 * @author Gerrit Addiks <[email protected]>
11
 */
12
13
namespace Addiks\SymfonyGenerics\Arguments\ArgumentFactory;
14
15
use Addiks\SymfonyGenerics\Arguments\ArgumentFactory\ArgumentFactory;
16
use Addiks\SymfonyGenerics\Arguments\Argument;
17
use Addiks\SymfonyGenerics\Arguments\RequestPayloadArgument;
18
use Symfony\Component\HttpFoundation\RequestStack;
19
use Webmozart\Assert\Assert;
20
21
final class RequestPayloadArgumentFactory implements ArgumentFactory
22
{
23
24
    /**
25
     * @var RequestStack
26
     */
27
    private $requestStack;
28
29 3
    public function __construct(RequestStack $requestStack)
30
    {
31 3
        $this->requestStack = $requestStack;
32 3
    }
33
34 1
    public function understandsString(string $source): bool
35
    {
36 1
        return $source === '$';
37
    }
38
39 1
    public function understandsArray(array $source): bool
40
    {
41 1
        return isset($source['type']) && $source['type'] === 'request-payload';
42
    }
43
44 1
    public function createArgumentFromString(string $source): Argument
45
    {
46 1
        return new RequestPayloadArgument($this->requestStack);
47
    }
48
49 1
    public function createArgumentFromArray(array $source): Argument
50
    {
51 1
        return new RequestPayloadArgument($this->requestStack);
52
    }
53
54
}
55