public function setUp()
 {
     $this->apiKeyManager = $this->prophesize('AppBundle\\Security\\ApiKeyManager');
     $this->logger = $this->prophesize('Psr\\Log\\LoggerInterface');
     $this->apiKeyAuthenticator = new ApiKeyAuthenticator($this->apiKeyManager->reveal(), $this->logger->reveal());
 }