Completed
Push — v2.0 ( c502f2...cf0b32 )
by Serhii
02:20
created

Browser::__construct()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
/**
3
 * @author Sergey Nehaenko <[email protected]>
4
 * @license GPL
5
 * @copyright Sergey Nehaenko &copy 2016
6
 * @version 2.0
7
 * @project browser-detector
8
 */
9
10
namespace EndorphinStudio\Detector;
11
12
13
class Browser extends DataWithVersion
14
{
15
    /**
16
     * Browser constructor.
17
     * @param \SimpleXMLElement $xmlData Xml data from file
18
     */
19
    public function __construct($xmlData)
20
    {
21
        parent::__construct($xmlData);
22
    }
23
}