Test Failed
Push — master ( 0f618b...fb6850 )
by Alex
09:40
created

TTextType::isOK()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 4
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 4
rs 10
c 0
b 0
f 0
cc 1
eloc 2
nc 1
nop 1
1
<?php
2
3
namespace AlgoWeb\ODataMetadata\MetadataV3\edm\ssdl;
4
5
use AlgoWeb\ODataMetadata\IsOK;
6
7
/**
8
 * Class representing TTextType
9
 *
10
 * TODO: I don't understand enough about the schema to do this one.
11
 *   <xs:complexType name="TText" mixed="true">
12
 '       <xs:sequence>
13
 '           <xs:any namespace="##other" processContents="lax" minOccurs="0" maxOccurs="unbounded" />
14
 '       </xs:sequence>
15
 '       <xs:anyAttribute processContents="lax" namespace="##other" />
16
 '   </xs:complexType>
17
 *
18
 * XSD Type: TText
19
 */
20
class TTextType extends IsOK
21
{
22
    public function isOK(&$msg = null)
23
    {
24
        return true;
25
    }
26
}
27