Problem/Motivation
JsonApiDocumentTopLevelNormalizerTest::generateProphecies($entity_type_id, $bundle)
is called with an extra argument quite a few times. Those need to be removed.
Example:
[$request, $resource_type] = $this->generateProphecies('node', 'article', 'uid');
should be
[$request, $resource_type] = $this->generateProphecies('node', 'article');