Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions src/Adapter/MapperInterface.php
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,10 @@ interface MapperInterface
* Maps the array of raw source data to the correct
* value objects
*
* @param array $data
* @param array $input
* @param MetadataInterface $output
*
* @return MetadataInterface
* @return void
*/
public function map(array $data);
public function map(array $input, MetadataInterface $output);
}