Skip to content

Commit bc3f5fa

Browse files
committed
Apply fixes from StyleCI
1 parent a9e9be4 commit bc3f5fa

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Illuminate/Support/MultipleInstanceManager.php

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,7 +132,6 @@ protected function resolve($name)
132132

133133
if (method_exists($this, $createMethod)) {
134134
return $this->{$createMethod}($config);
135-
136135
}
137136

138137
$createMethod = 'create'.Str::studly($driverName).ucfirst($this->driverKey);

tests/Integration/Support/Fixtures/MultipleInstanceManager.php

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,8 @@ public function __construct($config)
3434
};
3535
}
3636

37-
protected function createMysqlDatabaseConnectionDriver(array $config) {
37+
protected function createMysqlDatabaseConnectionDriver(array $config)
38+
{
3839
return new class($config)
3940
{
4041
public function __construct(public $config)
@@ -86,7 +87,7 @@ public function getInstanceConfig($name)
8687
case 'mysql_database-connection':
8788
return [
8889
'driver' => 'mysql_database-connection',
89-
'mysql_database-connection-option' => 'option-value'
90+
'mysql_database-connection-option' => 'option-value',
9091
];
9192
default:
9293
return [];

0 commit comments

Comments
 (0)