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