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

TTextType   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 7
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

Changes 1
Bugs 1 Features 0
Metric Value
wmc 1
c 1
b 1
f 0
lcom 0
cbo 1
dl 0
loc 7
rs 10

1 Method

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