handle() public method

Just call makeStandardsCompliant on the Response for now
public handle ( ComponentContext $componentContext ) : void
$componentContext ComponentContext
return void
 /**
  * @test
  */
 public function handleCallsMakeStandardsCompliantOnTheCurrentResponse()
 {
     $this->mockHttpResponse->expects($this->once())->method('makeStandardsCompliant')->with($this->mockHttpRequest);
     $this->standardsComplianceComponent->handle($this->mockComponentContext);
 }