Completed
Push — master ( 9db63e...40913a )
by Oleksandr
24s queued 13s
created

KlarnaStartSessionResponseContainer::getResponse()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
c 0
b 0
f 0
dl 0
loc 3
rs 10
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * MIT License
5
 * Use of this software requires acceptance of the Evaluation License Agreement. See LICENSE file.
6
 */
7
8
namespace SprykerEco\Zed\Payone\Business\Api\Response\Container;
9
10
class KlarnaStartSessionResponseContainer extends AbstractResponseContainer
11
{
12
    /**
13
     * @var string|null
14
     */
15
    protected $response;
16
17
    /**
18
     * @param string $response
19
     *
20
     * @return void
21
     */
22
    public function setResponse(string $response): void
23
    {
24
        $this->response = $response;
25
    }
26
27
    /**
28
     * @return string|null
29
     */
30
    public function getResponse(): ?string
31
    {
32
        return $this->response;
33
    }
34
}
35