Skip to content

Commit 504c50c

Browse files
committed
Add test & live clientId to ImportProject
1 parent 297b06c commit 504c50c

File tree

1 file changed

+20
-0
lines changed

1 file changed

+20
-0
lines changed

src/Project/Command/ImportProject.php

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -39,6 +39,16 @@ class ImportProject
3939
*/
4040
private $liveApiKeySapi3;
4141

42+
/**
43+
* @var string
44+
*/
45+
private $testClientId;
46+
47+
/**
48+
* @var string
49+
*/
50+
private $liveClientId;
51+
4252
/**
4353
* @var string
4454
*/
@@ -99,6 +109,16 @@ public function getLiveApiKeySapi3(): string
99109
return $this->liveApiKeySapi3;
100110
}
101111

112+
public function getTestClientId(): string
113+
{
114+
return $this->testClientId;
115+
}
116+
117+
public function getLiveClientId(): string
118+
{
119+
return $this->liveClientId;
120+
}
121+
102122
public function getState(): string
103123
{
104124
return $this->state;

0 commit comments

Comments
 (0)