FindRDVPointRetraitAcheminementResponse   A
last analyzed

Complexity

Total Complexity 3

Size/Duplication

Total Lines 36
Duplicated Lines 0 %

Importance

Changes 1
Bugs 0 Features 0
Metric Value
wmc 3
eloc 7
c 1
b 0
f 0
dl 0
loc 36
rs 10

3 Methods

Rating   Name   Duplication   Size   Complexity  
A setReturn() 0 4 1
A __construct() 0 4 1
A getReturn() 0 3 1
1
<?php
2
3
namespace ColissimoPickupPoint\StructType;
4
5
use \WsdlToPhp\PackageBase\AbstractStructBase;
6
7
/**
8
 * This class stands for findRDVPointRetraitAcheminementResponse StructType
9
 * Meta information extracted from the WSDL
10
 * - type: tns:findRDVPointRetraitAcheminementResponse
11
 * @subpackage Structs
12
 * @author WsdlToPhp <[email protected]>
13
 */
14
class FindRDVPointRetraitAcheminementResponse extends AbstractStructBase
15
{
16
    /**
17
     * The return
18
     * Meta information extracted from the WSDL
19
     * - minOccurs: 0
20
     * @var \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult
21
     */
22
    public $return;
23
    /**
24
     * Constructor method for findRDVPointRetraitAcheminementResponse
25
     * @uses FindRDVPointRetraitAcheminementResponse::setReturn()
26
     * @param \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return
27
     */
28
    public function __construct(\ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return = null)
29
    {
30
        $this
31
            ->setReturn($return);
32
    }
33
    /**
34
     * Get return value
35
     * @return \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult|null
36
     */
37
    public function getReturn()
38
    {
39
        return $this->return;
40
    }
41
    /**
42
     * Set return value
43
     * @param \ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return
44
     * @return \ColissimoPickupPoint\StructType\FindRDVPointRetraitAcheminementResponse
45
     */
46
    public function setReturn(\ColissimoPickupPoint\StructType\RdvPointRetraitAcheminementResult $return = null)
47
    {
48
        $this->return = $return;
49
        return $this;
50
    }
51
}
52