Passed
Push — master ( 466d92...f1f065 )
by smiley
01:58
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\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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.