Passed
Push — master ( 67765b...5568a8 )
by smiley
01:47
created
examples/oauth-example-common.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.