Test Setup Failed
Push — master ( 2d948a...3267ec )
by Andre
10:25
created
src/Analytics.php 1 patch
Spacing   +1 added lines, -1 removed lines patch added patch discarded remove patch
@@ -622,7 +622,7 @@
 block discarded – undo
622 622
     protected function enqueueHit($methodName)
623 623
     {
624 624
 
625
-        if(count($this->enqueuedUrls) == 20) {
625
+        if (count($this->enqueuedUrls) == 20) {
626 626
             throw new EnqueueUrlsOverflowException();
627 627
         }
628 628
 
Please login to merge, or discard this patch.
src/Network/HttpClient.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -153,8 +153,8 @@
 block discarded – undo
153 153
     private function sendRequest($request, array $options = [])
154 154
     {
155 155
         $opts = $this->parseOptions($options);
156
-        $response = $this->getClient()->get( $request )->then(
157
-          function ($request, ResponseInterface $response) {
156
+        $response = $this->getClient()->get($request)->then(
157
+          function($request, ResponseInterface $response) {
158 158
             return $this->getAnalyticsResponse($request, $response);
159 159
           });
160 160
 
Please login to merge, or discard this patch.