Completed
Push — master ( c45521...844759 )
by stéphane
08:22
created

NodeDirective::buildDirective()   A

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 0
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
<?php
2
3
namespace Dallgoot\Yaml;
4
5
/**
6
 *
7
 * @author  Stéphane Rebai <[email protected]>
8
 * @license Apache 2.0
9
 * @link    TODO : url to specific online doc
10
 */
11
class NodeDirective extends Node
12
{
13
    /**
14
     * Builds a directive. ---NOT IMPLEMENTED YET---
15
     *
16
     *
17
     * @todo implement if required
18
     */
19
    public static function buildDirective()
20
    {
21
    //     // TODO : implement
22
    }
23
24
}