DefaultParser   A
last analyzed

Complexity

Total Complexity 2

Size/Duplication

Total Lines 16
Duplicated Lines 0 %

Importance

Changes 0
Metric Value
eloc 1
dl 0
loc 16
rs 10
c 0
b 0
f 0
wmc 2

2 Methods

Rating   Name   Duplication   Size   Complexity  
A formatCallReturn() 0 2 1
A preFormatDatas() 0 2 1
1
<?php
2
3
/**
4
 * @version 1.0
5
 * @author Vermeulen Maxime (bulton-fr) <[email protected]>
6
 * @package bultonFr
7
 */
8
9
namespace bultonFr\CallCurl\Parser;
10
11
class DefaultParser implements \bultonFr\CallCurl\Parser
12
{
13
14
    /**
15
     * {@inheritdoc}
16
     */
17
    public function preFormatDatas(&$datas)
18
    {
19
        //Default parser: Nothing to do
20
    }
21
22
    /**
23
     * {@inheritdoc}
24
     */
25
    public function formatCallReturn(&$callReturn)
26
    {
27
        //Default parser: Nothing to do
28
    }
29
30
}
31