Completed
Push — master ( 41514f...acb7af )
by smiley
01:52
created
examples/oauth-example-common.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -62,7 +62,7 @@  discard block
 block discarded – undo
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
 block discarded – undo
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
 	}
Please login to merge, or discard this patch.