Skip to content

Commit

Permalink
Add missing processor and provider to extractor (#4754)
Browse files Browse the repository at this point in the history
  • Loading branch information
dannyvw authored May 16, 2022
1 parent 72e3f13 commit 1997785
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions Extractor/XmlResourceExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -114,6 +114,8 @@ private function buildBase(\SimpleXMLElement $resource): array
'paginationMaximumItemsPerPage' => $this->phpize($resource, 'paginationMaximumItemsPerPage', 'integer'),
'paginationPartial' => $this->phpize($resource, 'paginationPartial', 'bool'),
'paginationType' => $this->phpize($resource, 'paginationType', 'string'),
'processor' => $this->phpize($resource, 'processor', 'string'),
'provider' => $this->phpize($resource, 'provider', 'string'),
'security' => $this->phpize($resource, 'security', 'string'),
'securityMessage' => $this->phpize($resource, 'securityMessage', 'string'),
'securityPostDenormalize' => $this->phpize($resource, 'securityPostDenormalize', 'string'),
Expand Down
2 changes: 2 additions & 0 deletions Extractor/YamlResourceExtractor.php
Original file line number Diff line number Diff line change
Expand Up @@ -139,6 +139,8 @@ private function buildBase(array $resource): array
'paginationMaximumItemsPerPage' => $this->phpize($resource, 'paginationMaximumItemsPerPage', 'integer'),
'paginationPartial' => $this->phpize($resource, 'paginationPartial', 'bool'),
'paginationType' => $this->phpize($resource, 'paginationType', 'string'),
'processor' => $this->phpize($resource, 'processor', 'string'),
'provider' => $this->phpize($resource, 'provider', 'string'),
'security' => $this->phpize($resource, 'security', 'string'),
'securityMessage' => $this->phpize($resource, 'securityMessage', 'string'),
'securityPostDenormalize' => $this->phpize($resource, 'securityPostDenormalize', 'string'),
Expand Down

0 comments on commit 1997785

Please sign in to comment.