Passed
Push — master ( 75cbec...2d5f12 )
by Choquet
01:27
created

index::start()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 2
Code Lines 1

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 1
dl 0
loc 2
c 1
b 0
f 0
rs 10
cc 1
nc 1
nop 1
1
<?php
2
3
/**
4
 * © 2018 - Phoponent
5
 * Author: Nicolas Choquet
6
 * Email: [email protected]
7
 * LICENSE GPL ( GNU General Public License )
8
 */
9
    namespace phoponent;
10
    use phoponent\framework\traits\static_class;
11
    use phoponent\framework\static_classe\xphp;
12
13
    class index {
14
        use static_class;
15
        public static function start($argv) {
16
            return xphp::parse($argv[1]);
17
        }
18
    }