DefaultParser::preFormatDatas()   A
last analyzed

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 0

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 0
nc 1
nop 1
dl 0
loc 2
rs 10
c 0
b 0
f 0
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