@@ -59,7 +59,7 @@ discard block |
||
59 | 59 | ]; |
60 | 60 | |
61 | 61 | /** @var \chillerlan\Traits\ContainerInterface $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 | |
@@ -67,11 +67,11 @@ discard block |
||
67 | 67 | $logger->addInstance(new ConsoleLog($options), 'console'); |
68 | 68 | |
69 | 69 | /** @var \chillerlan\HTTP\HTTPClientInterface $http */ |
70 | -$http = new class($options) extends HTTPClientAbstract{ |
|
70 | +$http = new class($options) extends HTTPClientAbstract { |
|
71 | 71 | |
72 | 72 | protected $client; |
73 | 73 | |
74 | - public function __construct(ContainerInterface $options){ |
|
74 | + public function __construct(ContainerInterface $options) { |
|
75 | 75 | parent::__construct($options); |
76 | 76 | $this->client = new TinyCurlClient($this->options, new Request($this->options)); |
77 | 77 | } |