PurchaseFinished::__construct()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
eloc 1
nc 1
nop 1
dl 0
loc 3
c 0
b 0
f 0
cc 1
rs 10
1
<?php
2
3
declare(strict_types=1);
4
5
namespace Damax\ChargeableApi\Bridge\Symfony\EventDispatcher\Event;
6
7
use Damax\ChargeableApi\Identity\Identity;
8
use Damax\ChargeableApi\Product\Product;
9
use Damax\ChargeableApi\Store\Receipt;
10
use Symfony\Component\EventDispatcher\Event;
11
12
final class PurchaseFinished extends Event
13
{
14
    private $receipt;
15
16
    public function __construct(Receipt $receipt)
17
    {
18
        $this->receipt = $receipt;
19
    }
20
21
    public function receipt(): Receipt
22
    {
23
        return $this->receipt;
24
    }
25
26
    public function identity(): Identity
27
    {
28
        return $this->receipt->identity();
29
    }
30
31
    public function product(): Product
32
    {
33
        return $this->receipt->product();
34
    }
35
}
36