Completed
Push — master ( 720abf...ab493c )
by WEBEWEB
01:12
created

RangeEvent::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the haveibeenpwned-bundle package.
5
 *
6
 * (c) 2019 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Bundle\HaveIBeenPwnedBundle\Event;
13
14
use WBW\Library\HaveIBeenPwned\Entity\RangeInterface;
15
use WBW\Library\HaveIBeenPwned\Model\Request\RangeRequest;
16
use WBW\Library\HaveIBeenPwned\Model\Response\RangesResponse;
17
18
/**
19
 * Range event.
20
 *
21
 * @author webeweb <https://github.com/webeweb/>
22
 * @package WBW\Bundle\HaveIBeenPwnedBundle\Event
23
 */
24
class RangeEvent extends AbstractEvent {
25
26
    /**
27
     * Constructor.
28
     *
29
     * @param RangeInterface $entity The range.
30
     */
31
    public function __construct(RangeInterface $entity) {
32
        parent::__construct(HaveIBeenPwnedEvents::RANGE, $entity);
33
    }
34
35
    /**
36
     * Get the range.
37
     *
38
     * @return RangeInterface Returns the range.
39
     */
40
    public function getRange() {
41
        return $this->getEntity();
42
    }
43
44
    /**
45
     * Get the range request.
46
     *
47
     * @return RangeRequest Returns the range request.
48
     */
49
    public function getRequest() {
50
        return parent::getRequest();
51
    }
52
53
    /**
54
     * Get the ranges response.
55
     *
56
     * @return RangesResponse Returns the ranges response.
57
     */
58
    public function getResponse() {
59
        return parent::getResponse();
60
    }
61
}
62