@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | ]; |
60 | 60 | |
61 | 61 | /** @var \chillerlan\Traits\ImmutableSettingsInterface $options */ |
62 | -$options = new class($options_arr) extends OAuthOptions{ |
|
62 | +$options = new class($options_arr) extends OAuthOptions { |
|
63 | 63 | use DatabaseOptionsTrait, LogOptionsTrait; |
64 | 64 | |
65 | 65 | protected $sleep; |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | $logger->addInstance(new ConsoleLog($options), 'console'); |
70 | 70 | |
71 | 71 | /** @var \chillerlan\HTTP\HTTPClientInterface $http */ |
72 | -$http = new class($options) extends HTTPClientAbstract{ |
|
72 | +$http = new class($options) extends HTTPClientAbstract { |
|
73 | 73 | |
74 | 74 | protected $client; |
75 | 75 | |
76 | - public function __construct(ImmutableSettingsInterface $options){ |
|
76 | + public function __construct(ImmutableSettingsInterface $options) { |
|
77 | 77 | parent::__construct($options); |
78 | 78 | $this->client = new CurlClient($this->options); |
79 | 79 | } |