Skip to content

Commit d0f79fe

Browse files
rubenvanasscheactions-user
authored andcommitted
Fix styling
1 parent fbe92da commit d0f79fe

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/SettingsRepositories/DatabaseSettingsRepository.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -108,11 +108,11 @@ public function getBuilder(): Builder
108108
{
109109
$model = new $this->propertyModel;
110110

111-
if($this->connection){
111+
if ($this->connection) {
112112
$model->setConnection($this->connection);
113113
}
114114

115-
if($this->table){
115+
if ($this->table) {
116116
$model->setTable($this->table);
117117
}
118118

tests/SettingsRepositories/DatabaseSettingsRepositoryTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -274,7 +274,7 @@ public function it_can_have_a_different_table_name()
274274
});
275275

276276
$repository = new DatabaseSettingsRepository([
277-
'table' => 'spatie_settings'
277+
'table' => 'spatie_settings',
278278
]);
279279

280280
$repository->createProperty('test', 'a', 'Alpha');

0 commit comments

Comments
 (0)