Test Failed
Push — master ( d0c4fc...cfdb33 )
by Alexey
07:35 queued 03:15
created

Info::process()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 3
nc 1
nop 0
dl 0
loc 5
rs 9.4285
c 0
b 0
f 0
1
<?php
2
3
/**
4
 * Mode Init
5
 *
6
 * @author Alexey Krupskiy <[email protected]>
7
 * @link http://inji.ru/
8
 * @copyright 2015 Alexey Krupskiy
9
 * @license https://github.com/injitools/cms-Inji/blob/master/LICENSE
10
 */
11
12
namespace Exchange1c\Mode;
13
14
use Exchange1c\Exchange;
15
16
class Info extends \Exchange1c\Mode
17
{
18
19
    public function process()
20
    {
21
        echo "version=2.03";
22
        $this->end();
23
    }
24
25
}
26