We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58c7411 commit 1c15d8eCopy full SHA for 1c15d8e
src/Auth/Process/Authorize.php
@@ -162,19 +162,10 @@ public function __construct(array $config, $reserved)
162
}
163
164
165
- // For backward compatibility, if no spEntityIDs were found,
166
- // store the values directly in the old format
167
- if ($spEntityIDs === null) {
168
- $this->valid_attribute_values[$attribute] = [
169
- 'values' => $values,
170
- 'spEntityIDs' => null,
171
- ];
172
- } else {
173
174
175
- 'spEntityIDs' => $spEntityIDs,
176
177
- }
+ $this->valid_attribute_values[$attribute] = [
+ 'values' => $values,
+ 'spEntityIDs' => $spEntityIDs,
+ ];
178
179
180
0 commit comments