Completed
Pull Request — master (#579)
by Daniel Rodrigo
02:40
created
src/Facebook/FacebookRequest.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -511,7 +511,7 @@  discard block
 block discarded – undo
511 511
         $graphVersion = FacebookUrlManipulator::forceSlashPrefix($this->graphVersion);
512 512
         $endpoint = FacebookUrlManipulator::forceSlashPrefix($this->getEndpoint());
513 513
 
514
-        $url = $graphVersion . $endpoint;
514
+        $url = $graphVersion.$endpoint;
515 515
 
516 516
         if ($this->getMethod() !== 'POST') {
517 517
             $params = $this->getParams();
@@ -529,7 +529,7 @@  discard block
 block discarded – undo
529 529
     public static function getDefaultHeaders()
530 530
     {
531 531
         return [
532
-            'User-Agent' => 'fb-php-' . Facebook::VERSION,
532
+            'User-Agent' => 'fb-php-'.Facebook::VERSION,
533 533
             'Accept-Encoding' => '*',
534 534
         ];
535 535
     }
Please login to merge, or discard this patch.