Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
arietimmerman committed Sep 16, 2024
1 parent 36204f6 commit 821d952
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Http/Controllers/ResourceController.php
Original file line number Diff line number Diff line change
Expand Up @@ -163,7 +163,7 @@ public function update(Request $request, PolicyDecisionPoint $pdp, ResourceType

case "remove":
if (isset($operation['path'])) {
$resourceType->getMapping()->patch('remove', $operation['value'], $resourceObject, ParserParser::parse($operation['path'] ?? null));
$resourceType->getMapping()->patch('remove', $operation['value'] ?? null, $resourceObject, ParserParser::parse($operation['path'] ?? null));
} else {
throw new SCIMException('You MUST provide a "Path"');
}
Expand Down

0 comments on commit 821d952

Please sign in to comment.