disableSendImageResponse() public method

If image response is disabled Piwik will respond with a HTTP 204 header instead of responding with a gif.
示例#1
0
 public function test_response_ShouldBeEmpty_IfImageIsDisabled()
 {
     $this->tracker->disableSendImageResponse();
     $response = $this->tracker->doTrackPageView('Test');
     $this->assertSame('', $response);
 }