class-wpml-tm-icl20-migration-container.php
697 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
<?php
/**
* @author OnTheGo Systems
*/
class WPML_TM_ICL20_Migration_Container {
private $acknowledge;
private $project;
private $token;
public function __construct(
WPML_TM_ICL20_Token $token,
WPML_TM_ICL20_Project $project,
WPML_TM_ICL20_Acknowledge $ack
) {
$this->token = $token;
$this->project = $project;
$this->acknowledge = $ack;
}
/**
* @return WPML_TM_ICL20_Acknowledge
*/
public function get_acknowledge() {
return $this->acknowledge;
}
/**
* @return WPML_TM_ICL20_Project
*/
public function get_project() {
return $this->project;
}
/**
* @return WPML_TM_ICL20_Token
*/
public function get_token() {
return $this->token;
}
}