Passed
Push — master ( 1dcf9b...c6a312 )
by y
01:25
created

Text::toFloat()   A

Complexity

Conditions 2
Paths 2

Size

Total Lines 5
Code Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
eloc 3
c 1
b 0
f 0
dl 0
loc 5
rs 10
nc 2
nop 0
cc 2
1
<?php
2
3
namespace Helix\DB\SQL;
4
5
/**
6
 * Represents a text expression. Produces various transformations.
7
 */
8
class Text extends Value {
9
10
    use TextTrait;
11
}