Skip to content

Commit d9df71e

Browse files
committed
small stuff
1 parent e7ba5dd commit d9df71e

51 files changed

Lines changed: 304 additions & 123 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

src/ACL/ACLAuthMethod.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ public function __construct(
8282
$this->Namespace = $Namespace;
8383
$this->Partition = $Partition;
8484
if (null !== $data && [] !== $data) {
85-
$this->jsonUnserialize((object)$data, $this);
85+
self::jsonUnserialize((object)$data, $this);
8686
}
8787
}
8888

src/ACL/ACLAuthMethodListEntry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ public function __construct(
6262
$this->ModifyIndex = $ModifyIndex;
6363
$this->Namespace = $Namespace;
6464
if (null !== $data && [] !== $data) {
65-
$this->jsonUnserialize((object)$data, $this);
65+
self::jsonUnserialize((object)$data, $this);
6666
}
6767
}
6868

src/ACL/ACLAuthMethodNamespaceRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(
3535
$this->Selector = $Selector;
3636
$this->BindNamespace = $BindNamespace;
3737
if (null !== $data && [] !== $data) {
38-
$this->jsonUnserialize((object)$data, $this);
38+
self::jsonUnserialize((object)$data, $this);
3939
}
4040
}
4141

src/ACL/ACLBindingRule.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ public function __construct(
5656
$this->ModifyIndex = $ModifyIndex;
5757
$this->Namespace = $Namespace;
5858
if (null !== $data && [] !== $data) {
59-
$this->jsonUnserialize((object)$data, $this);
59+
self::jsonUnserialize((object)$data, $this);
6060
}
6161
}
6262

src/ACL/ACLEntry.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ public function __construct(
4747
$this->Type = $Type;
4848
$this->Rules = $Rules;
4949
if (null !== $data && [] !== $data) {
50-
$this->jsonUnserialize((object)$data, $this);
50+
self::jsonUnserialize((object)$data, $this);
5151
}
5252
}
5353

src/ACL/ACLLink.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(
3535
$this->ID = $ID;
3636
$this->Name = $Name;
3737
if (null !== $data && [] !== $data) {
38-
$this->jsonUnserialize((object)$data, $this);
38+
self::jsonUnserialize((object)$data, $this);
3939
}
4040
}
4141

src/ACL/ACLLoginParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public function __construct(
3838
$this->BearerToken = $BearerToken;
3939
$this->setMeta($Meta);
4040
if (null !== $data && [] !== $data) {
41-
$this->jsonUnserialize((object)$data, $this);
41+
self::jsonUnserialize((object)$data, $this);
4242
}
4343
}
4444

src/ACL/ACLNodeIdentity.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public function __construct(
3535
$this->NodeName = $NodeName;
3636
$this->Datacenter = $Datacenter;
3737
if (null !== $data && [] !== $data) {
38-
$this->jsonUnserialize((object)$data, $this);
38+
self::jsonUnserialize((object)$data, $this);
3939
}
4040
}
4141

src/ACL/ACLOIDCAuthURLParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(
4141
$this->ClientNonce = $ClientNonce;
4242
$this->setMeta($Meta);
4343
if (null !== $data && [] !== $data) {
44-
$this->jsonUnserialize((object)$data, $this);
44+
self::jsonUnserialize((object)$data, $this);
4545
}
4646
}
4747

src/ACL/ACLOIDCCallbackParams.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ public function __construct(
4141
$this->Code = $Code;
4242
$this->ClientNonce = $ClientNonce;
4343
if (null !== $data && [] !== $data) {
44-
$this->jsonUnserialize((object)$data, $this);
44+
self::jsonUnserialize((object)$data, $this);
4545
}
4646
}
4747

0 commit comments

Comments
 (0)