File tree 3 files changed +4
-3
lines changed
3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -90,10 +90,10 @@ class GatewayService extends AbstractModel
90
90
public function __construct (?array $ data = [])
91
91
{
92
92
parent ::__construct ($ data );
93
- if (null === $ this ->Gateway ) {
93
+ if (! isset ( $ this ->Gateway ) ) {
94
94
$ this ->Gateway = new CompoundServiceName ();
95
95
}
96
- if (null === $ this ->Service ) {
96
+ if (! isset ( $ this ->Service ) ) {
97
97
$ this ->Service = new CompoundServiceName ();
98
98
}
99
99
}
Original file line number Diff line number Diff line change @@ -98,7 +98,7 @@ public function buildQueryMeta(): QueryMeta
98
98
99
99
// if there was no response, return as-is
100
100
// note: should never see this in the wild.
101
- if (null === $ this ->Response ) {
101
+ if (! isset ( $ this ->Response ) ) {
102
102
return $ qm ;
103
103
}
104
104
Original file line number Diff line number Diff line change @@ -16,6 +16,7 @@ final class KVClientCASTest extends AbstractUsageTests
16
16
public const KVOriginalValue = 'originalvalue ' ;
17
17
public const KVUpdatedValue = 'updatedvalue ' ;
18
18
public const KVUpdatedValue2 = 'updatedvalue2 ' ;
19
+
19
20
/** @var bool */
20
21
protected static $ singlePerClass = true ;
21
22
You can’t perform that action at this time.
0 commit comments