Skip to content

Commit

Permalink
Merge pull request #12 from ConductionNL/development
Browse files Browse the repository at this point in the history
camelCase to snake_case
  • Loading branch information
rubenvdlinde authored Dec 19, 2019
2 parents 093b417 + 90188be commit bd1cbe4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/src/Subscriber/FieldsAndExtendSubscriber.php
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ public function FilterFields(GetResponseForControllerResultEvent $event)
}

// Its possible to nest fields for filterins
foreach($fields as $key->$value){
foreach($fields as $key => $value){
// Lets check if the fields contain one or more .'s
if (strpos($value, '.') !== false) {
// This is where it gets complicated couse it could go on indevinitly
Expand Down

0 comments on commit bd1cbe4

Please sign in to comment.