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

TrackingField   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 5
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 1

1 Method

Rating   Name   Duplication   Size   Complexity  
A itemClass() 0 3 1
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