Completed
Push — master ( b2deb1...132e60 )
by Dominik
02:01
created

AbstractNode::allowNull()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 2
Bugs 1 Features 0
Metric Value
c 2
b 1
f 0
dl 0
loc 4
rs 10
cc 1
eloc 2
nc 1
nop 0
1
<?php
2
3
namespace Saxulum\ElasticSearchQueryBuilder\Node;
4
5
abstract class AbstractNode
6
{
7
    /**
8
     * @var string
9
     */
10
    const classname = __CLASS__;
11
12
    /**
13
     * @var AbstractParentNode
14
     */
15
    protected $parent;
16
17
    /**
18
     * @return \stdClass|array|string|float|integer|boolean|null
19
     */
20
    abstract public function serialize();
21
}
22