We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3eba351 + 84919d9 commit 8bf49a8Copy full SHA for 8bf49a8
src/Identity/v3/Models/Endpoint.php
@@ -80,7 +80,7 @@ public function delete()
80
81
public function regionMatches(string $value): bool
82
{
83
- return $this->region && $this->region == $value;
+ return in_array($this->region, ['*', $value]);
84
}
85
86
public function interfaceMatches(string $value): bool
src/Identity/v3/Models/Service.php
@@ -93,7 +93,7 @@ private function nameMatches(string $value): bool
93
94
private function typeMatches(string $value): bool
95
96
- return $this->type && $this->type = $value;
+ return $this->type && $this->type == $value;
97
98
99
/**
0 commit comments