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

MeetingRegistrant::fromEmailAndFirstName()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 10
Code Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 2
eloc 6
c 0
b 0
f 0
nc 2
nop 3
dl 0
loc 10
rs 10
1
<?php
2
3
/* For licensing terms, see /license.txt */
4
5
namespace Chamilo\PluginBundle\Zoom\API;
6
7
/**
8
 * Class Registrant.
9
 *
10
 * Structure of the information to send the server in order to register someone to a meeting.
11
 */
12
class MeetingRegistrant extends RegistrantSchema
13
{
14
    public $auto_approve;
15
16
    public function __construct()
17
    {
18
        parent::__construct();
19
20
        $this->auto_approve = true;
21
    }
22
}
23