Completed
Push — master ( bc6f43...6ee0f9 )
by WEBEWEB
25:08
created

DADSUAnnuelle::getNomFichierDADSU()   A

Complexity

Conditions 1
Paths 1

Size

Total Lines 3

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
dl 0
loc 3
rs 10
c 0
b 0
f 0
cc 1
nc 1
nop 0
1
<?php
2
3
/**
4
 * This file is part of the core-library package.
5
 *
6
 * (c) 2018 WEBEWEB
7
 *
8
 * For the full copyright and license information, please view the LICENSE
9
 * file that was distributed with this source code.
10
 */
11
12
namespace WBW\Library\Core\Quadratus\Model\QPaie;
13
14
15
/**
16
 * D a d s u annuelle model.
17
 *
18
 * @author webeweb <https://github.com/webeweb/>
19
 * @package WBW\Library\Core\Quadratus\Model\QPaie
20
 */
21
class DADSUAnnuelle {
22
23
	/**
24
	 * Nom fichier d a d s u.
25
	 *
26
	 * @var string
27
	 */
28
	private $nomFichierDADSU;
29
30
	/**
31
	 * Tds annee.
32
	 *
33
	 * @var int
34
	 */
35
	private $tdsAnnee;
36
37
	/**
38
	 * Constructor.
39
	 */
40
	public function __construct() {
41
		// NOTHING TO DO;
42
	}
43
44
	/**
45
	 * Get the nom fichier d a d s u.
46
	 *
47
	 * @return string Returns the nom fichier d a d s u.
48
	 */
49
	public function getNomFichierDADSU() {
50
		return $this->nomFichierDADSU;
51
	}
52
53
	/**
54
	 * Get the tds annee.
55
	 *
56
	 * @return int Returns the tds annee.
57
	 */
58
	public function getTdsAnnee() {
59
		return $this->tdsAnnee;
60
	}
61
62
	/**
63
	 * Set the nom fichier d a d s u.
64
	 *
65
	 * @param string $nomFichierDADSU The nom fichier d a d s u.
66
	 * @return DADSUAnnuelle Returns this d a d s u annuelle.
67
	 */
68
	public function setNomFichierDADSU($nomFichierDADSU) {
69
		$this->nomFichierDADSU = $nomFichierDADSU;
70
		return $this;
71
	}
72
73
	/**
74
	 * Set the tds annee.
75
	 *
76
	 * @param int $tdsAnnee The tds annee.
77
	 * @return DADSUAnnuelle Returns this d a d s u annuelle.
78
	 */
79
	public function setTdsAnnee($tdsAnnee) {
80
		$this->tdsAnnee = $tdsAnnee;
81
		return $this;
82
	}
83
84
}
85