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