class-wpml-tm-jobs-batch.php
655 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
<?php
class WPML_TM_Jobs_Batch {
/** @var int */
private $id;
/** @var string */
private $name;
/** @var int|null */
private $tp_id;
/**
* @param int $id
* @param string $name
* @param int|null $tp_id
*/
public function __construct( $id, $name, $tp_id = null ) {
$this->id = (int) $id;
$this->name = (string) $name;
$this->tp_id = $tp_id ? (int) $tp_id : null;
}
/**
* @return int
*/
public function get_id() {
return $this->id;
}
/**
* @return string
*/
public function get_name() {
return $this->name;
}
/**
* @return int|null
*/
public function get_tp_id() {
return $this->tp_id;
}
}