Completed
Push — master ( e3be67...2f9429 )
by Adelar
02:35
created

Ofx::loadFromFile()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 7
Code Lines 4

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 0 Features 0
Metric Value
c 2
b 0
f 0
dl 0
loc 7
rs 9.4286
cc 2
eloc 4
nc 2
nop 1
1
<?php
2
namespace Adelarcubs\OFXParser;
3
4
use SimpleXMLElement;
5
6
/**
7
 *
8
 * @author Adelar Tiemann Junior <[email protected]>
9
 */
10
class Ofx
11
{
12
13
    public $ofx;
14
15
    public function __construct(SimpleXMLElement $xml)
16
    {
17
        $this->ofx = $xml;
18
    }
19
}
20