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

Banking   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 14
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

Changes 3
Bugs 0 Features 0
Metric Value
wmc 1
c 3
b 0
f 0
lcom 0
cbo 0
dl 0
loc 14
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A parse() 0 4 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