KycDocumentPage   A
last analyzed

Complexity

Total Complexity 6

Size/Duplication

Total Lines 56
Duplicated Lines 0 %

Coupling/Cohesion

Components 0
Dependencies 0

Importance

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

6 Methods

Rating   Name   Duplication   Size   Complexity  
A getKycDocumentId() 0 4 1
A setKycDocumentId() 0 4 1
A getOwnerId() 0 4 1
A setOwnerId() 0 4 1
A getFilePath() 0 4 1
A setFilePath() 0 4 1
1
<?php
2
/**
3
 * Created by Carl Owens ([email protected])
4
 * Company: PartFire Ltd (www.partfire.co.uk)
5
 * Copyright © 2016 PartFire Ltd. All rights reserved.
6
 *
7
 * User:    Carl Owens
8
 * Date:    06/12/2016
9
 * Time:    21:25
10
 * File:    KycDocumentPage.php
11
 **/
12
13
namespace PartFire\MangoPayBundle\Models\DTOs;
14
15
class KycDocumentPage
16
{
17
    protected $kycDocumentId;
18
19
    protected $ownerId;
20
21
    protected $filePath;
22
23
    /**
24
     * @return mixed
25
     */
26
    public function getKycDocumentId()
27
    {
28
        return $this->kycDocumentId;
29
    }
30
31
    /**
32
     * @param mixed $kycDocumentId
33
     */
34
    public function setKycDocumentId($kycDocumentId)
35
    {
36
        $this->kycDocumentId = $kycDocumentId;
37
    }
38
39
    /**
40
     * @return mixed
41
     */
42
    public function getOwnerId()
43
    {
44
        return $this->ownerId;
45
    }
46
47
    /**
48
     * @param mixed $ownerId
49
     */
50
    public function setOwnerId($ownerId)
51
    {
52
        $this->ownerId = $ownerId;
53
    }
54
55
    /**
56
     * @return mixed
57
     */
58
    public function getFilePath()
59
    {
60
        return $this->filePath;
61
    }
62
63
    /**
64
     * @param mixed $filePath
65
     */
66
    public function setFilePath($filePath)
67
    {
68
        $this->filePath = $filePath;
69
    }
70
}
71