Passed
Push — master ( 2ac80a...64818d )
by Christopher
03:57
created

TTextType::IsOK()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
c 0
b 0
f 0
dl 0
loc 3
rs 10
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
        return true;
24
    }
25
}
26