Passed
Pull Request — 1.11.x (#4160)
by Angel Fernando Quiroz
10:16
created

FollowUpUsers::itemClass()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 3
rs 10
c 1
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/* For licensing terms, see /license.txt */
4
5
namespace Chamilo\PluginBundle\Zoom\API;
6
7
use Exception;
8
9
class FollowUpUsers
10
{
11
    use JsonDeserializableTrait;
12
13
    /**
14
     * @var bool
15
     */
16
    public $enable;
17
    /**
18
     * @var
19
     */
20
    public $type;
21
22
    public function itemClass($propertyName)
23
    {
24
        throw new Exception("No such array property $propertyName");
25
    }
26
}
27