Passed
Push — master ( c22b6a...5f79f5 )
by Julito
11:21
created

TrackingField::itemClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 1
nc 1
nop 1
dl 0
loc 3
rs 10
c 0
b 0
f 0
1
<?php
2
3
/* For licensing terms, see /license.txt */
4
5
namespace Chamilo\PluginBundle\Zoom\API;
6
7
use Exception;
8
9
/**
10
 * Class TrackingField. Instances of this class can be listed in a meeting object.
11
 */
12
class TrackingField
13
{
14
    use JsonDeserializableTrait;
15
16
    /** @var string Tracking fields type */
17
    public $field;
18
19
    /** @var string Tracking fields value */
20
    public $value;
21
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function itemClass($propertyName)
26
    {
27
        throw new Exception("no such array property $propertyName");
28
    }
29
}
30