Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
85.71% covered (warning)
85.71%
6 / 7
80.00% covered (warning)
80.00%
4 / 5
CRAP
0.00% covered (danger)
0.00%
0 / 1
MetadataModified
85.71% covered (warning)
85.71%
6 / 7
80.00% covered (warning)
80.00%
4 / 5
5.07
0.00% covered (danger)
0.00%
0 / 1
 __construct
100.00% covered (success)
100.00%
3 / 3
100.00% covered (success)
100.00%
1 / 1
1
 getName
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getResource
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getMetadataUri
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
 getMetadataValue
100.00% covered (success)
100.00%
1 / 1
100.00% covered (success)
100.00%
1 / 1
1
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) 2015 (original work) Open Assessment Technologies SA
19 *
20 */
21
22namespace oat\tao\model\event;
23
24use oat\oatbox\event\Event;
25
26class MetadataModified implements Event
27{
28    /**
29     *
30     * Resource that have been modified/created
31     *
32     * @var \core_kernel_classes_Resource
33     */
34    private $resource;
35
36    /**
37     * Metadata uri that changed
38     *
39     * @var string
40     */
41    private $metadataUri;
42
43    /**
44     * Metadata value that changed
45     *
46     * @var string
47     */
48    private $metadataValue;
49
50    /**
51     * MetadataInjected constructor.
52     * @param $item
53     * @param string $metadataUri
54     * @param string $metadataValue
55     */
56    public function __construct($resource, $metadataUri, $metadataValue)
57    {
58        $this->resource = $resource;
59        $this->metadataUri = $metadataUri;
60        $this->metadataValue = $metadataValue;
61    }
62
63
64    /**
65     * (non-PHPdoc)
66     * @see \oat\oatbox\event\Event::getName()
67     */
68    public function getName()
69    {
70        return __CLASS__;
71    }
72
73    /**
74     * @return \core_kernel_classes_Resource
75     */
76    public function getResource()
77    {
78        return $this->resource;
79    }
80
81    /**
82     * @return string
83     */
84    public function getMetadataUri()
85    {
86        return $this->metadataUri;
87    }
88
89    /**
90     * @return string
91     */
92    public function getMetadataValue()
93    {
94        return $this->metadataValue;
95    }
96}