Skip to content

Commit

Permalink
QE-518 dev: isValidPatch op handler languageSettings (nothing to chec…
Browse files Browse the repository at this point in the history
…k) (#3623)
  • Loading branch information
Trischi80 committed Nov 20, 2023
1 parent 3133716 commit 4e6034b
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -56,7 +56,7 @@ public function canHandle(OpInterface $op): bool
* "entity": "languageSetting",
* "op": "update",
* "id": {
* "sid": 123456,
* "sid": 123456, //todo do we still need the sid here?
* "language": "de"
* },
* "props": {
Expand All @@ -72,7 +72,7 @@ public function canHandle(OpInterface $op): bool
* "entity": "languageSetting",
* "op": "update",
* "id": {
* "sid": 123456
* "sid": 123456 //todo do we still need the sid here?
* },
* "props": {
* "de": {
Expand Down Expand Up @@ -153,7 +153,7 @@ private function getTransformedProps(OpInterface $op, ?array $props)
*/
public function isValidPatch(OpInterface $op): bool
{
// TODO: Implement isValidPatch() method.
// getTransformedProps will throw an exception if the patch is not valid
return true;
}
}

0 comments on commit 4e6034b

Please sign in to comment.