Completed
Branch account (67fd83)
by vincent
05:37
created
src/VfacTmdb/Auth.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@  discard block
 block discarded – undo
1
-<?php declare(strict_types=1);
1
+<?php declare(strict_types = 1);
2 2
 /**
3 3
  * This file is part of the Tmdb package.
4 4
  *
@@ -47,7 +47,7 @@  discard block
 block discarded – undo
47 47
      * Session Id
48 48
      * @var string
49 49
      */
50
-    private $session_id  = null;
50
+    private $session_id = null;
51 51
 
52 52
     /**
53 53
      * Constructor
@@ -89,7 +89,7 @@  discard block
 block discarded – undo
89 89
         if (!isset($data->success) || $data->success != 'true' || !isset($data->request_token)) {
90 90
             throw new InvalidResponseException("Getting request token failed");
91 91
         }
92
-        $this->request_token            = $data->request_token;
92
+        $this->request_token = $data->request_token;
93 93
 
94 94
         return $this->request_token;
95 95
     }
Please login to merge, or discard this patch.