ArrayOfStringsType   A
last analyzed

Complexity

Total Complexity 1

Size/Duplication

Total Lines 19
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 1

Importance

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

1 Method

Rating   Name   Duplication   Size   Complexity  
A __toString() 0 4 1
1
<?php
2
3
namespace PhpEws\DataType;
4
5
use PhpEws\DataType;
6
7
/**
8
 * Definition of the ArrayOfStringsType type
9
 */
10
class ArrayOfStringsType extends DataType
11
{
12
    /**
13
     * String property
14
     *
15
     * @var string
16
     */
17
    public $String;
18
19
    /**
20
     * Properly converts the value of this type to a string.
21
     *
22
     * @return string
23
     */
24
    public function __toString()
25
    {
26
        return $this->String;
27
    }
28
}
29