Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 3
CRAP
0.00% covered (danger)
0.00%
0 / 1
DeliveryExecutionVerified
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 getName
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 __construct
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getDeliveryExecution
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
1<?php
2
3/**
4 * This program is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU General Public License
6 * as published by the Free Software Foundation; under version 2
7 * of the License (non-upgradable).
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software
16 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
17 *
18 * Copyright (c) 2017 (original work) Open Assessment Technologies SA;
19 *
20 *
21 */
22
23namespace oat\taoDelivery\models\classes\execution\event;
24
25use oat\taoDelivery\model\execution\DeliveryExecution;
26use oat\oatbox\event\Event;
27
28class DeliveryExecutionVerified implements Event, DeliveryExecutionAwareInterface
29{
30    public const EVENT_NAME = __CLASS__;
31
32    /**
33     * (non-PHPdoc)
34     * @see \oat\oatbox\event\Event::getName()
35     */
36    public function getName()
37    {
38        return self::EVENT_NAME;
39    }
40
41    /**
42     * @var DeliveryExecution delivery execution instance
43     */
44    private $deliveryExecution;
45
46    /**
47     * DeliveryExecutionState constructor.
48     * @param DeliveryExecution $deliveryExecution
49     */
50    public function __construct(DeliveryExecution $deliveryExecution)
51    {
52        $this->deliveryExecution = $deliveryExecution;
53    }
54
55    /**
56     * Returns newly created delivery execution
57     *
58     * @return DeliveryExecution
59     */
60    public function getDeliveryExecution()
61    {
62        return $this->deliveryExecution;
63    }
64}