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