GitHub Access Token became invalid

It seems like the GitHub access token used for retrieving details about this repository from GitHub became invalid. This might prevent certain types of inspections from being run (in particular, everything related to pull requests).
Please ask an admin of your repository to re-new the access token on this website.
Completed
Push — master ( d5a68e...407fcc )
by Orlando
01:11
created

IEDU::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 6

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 6
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 1
1
<?php
2
3
/*
4
 * This file is part of the cfdi-xml project.
5
 *
6
 * (c) Kinedu
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace Kinedu\CfdiXML\Common\Complemento;
13
14
use Kinedu\CfdiXML\Common\ComplementoConcepto;
15
16
class IEDU extends ComplementoConcepto
17
{
18
    /** @var string */
19
    protected $namespace = 'iedu';
20
21
    /** @var string */
22
    protected $namespaceKey = 'iedu';
23
24
    /** @var string */
25
    protected $schemaDefinition = 'iedu';
26
27
    /** @var string */
28
    protected $nodeName = 'iedu:instEducativas';
29
30
    /**
31
     * Create a new iedu instance.
32
     *
33
     * @param  array  $attributes
34
     */
35
    public function __construct(array $attributes)
36
    {
37
        $attributes = array_merge(['version' => '1.0'], $attributes);
38
39
        parent::__construct($attributes);
40
    }
41
}
42