File tree 3 files changed +14
-1
lines changed
3 files changed +14
-1
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ class Client {
34
34
*/
35
35
public function __construct ( $ token = '' ) {
36
36
$ config = Configuration::getDefaultConfiguration ()->setUsername ( 'WordPress ' )->setPassword (
37
- $ token ?: Helpers:: get_settings ()[ ' api_token ' ]
37
+ $ token
38
38
)->setHost ( Helpers::get_hosted_domain_url () );
39
39
$ this ->api_instance = new DefaultApi ( new GuzzleClient (), $ config );
40
40
}
Original file line number Diff line number Diff line change @@ -34,6 +34,14 @@ public function build() {
34
34
return false ; // @codeCoverageIgnore
35
35
}
36
36
37
+ if ( ! $ this ->token ) {
38
+ $ this ->token = Helpers::get_settings ()[ 'api_token ' ];
39
+ }
40
+
41
+ if ( ! $ this ->token ) {
42
+ return false ;
43
+ }
44
+
37
45
return new Client ( $ this ->token );
38
46
}
39
47
Original file line number Diff line number Diff line change @@ -17,6 +17,11 @@ public function testBuild() {
17
17
$ clientFactory = new ClientFactory ();
18
18
$ client = $ clientFactory ->build ();
19
19
20
+ $ this ->assertFalse ( $ client );
21
+
22
+ $ clientFactory = new ClientFactory ( 'test ' );
23
+ $ client = $ clientFactory ->build ();
24
+
20
25
$ this ->assertInstanceOf ( Client::class, $ client );
21
26
}
22
27
}
You can’t perform that action at this time.
0 commit comments