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

TTextType   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 6
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 0
Metric Value
wmc 1
c 0
b 0
f 0
lcom 0
cbo 1
dl 0
loc 6
rs 10

1 Method

Rating   Name   Duplication   Size   Complexity  
A IsOK() 0 3 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