Completed
Push — master ( 26e69a...ab0b77 )
by Robin
03:27
created

Banking::parse()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
c 1
b 0
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace Kingsquare\Parser;
4
5
/**
6
 * @author Kingsquare ([email protected])
7
 * @license http://opensource.org/licenses/MIT MIT
8
 */
9
class Banking
10
{
11
    /**
12
     * Parse the given string into an array of \Banking\Statement objects.
13
     *
14
     * @param string $string
15
     *
16
     * @return array
17
     */
18
    public function parse($string)
19
    {
20
        return [];
21
    }
22
}
23