Skip to content

Commit ba0f241

Browse files
rubenvanasschegithub-actions[bot]
authored andcommitted
Fix styling
1 parent 19ab2dc commit ba0f241

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

tests/SettingsRepositories/DatabaseSettingsRepositoryTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -139,16 +139,16 @@
139139
expect($this->repository->getPropertyPayload('test', 'e'))->toEqual(69);
140140
});
141141

142-
it('can utilize custom encoders', function() {
143-
config()->set('settings.encoder', fn($value) => str_rot13(json_encode($value)));
142+
it('can utilize custom encoders', function () {
143+
config()->set('settings.encoder', fn ($value) => str_rot13(json_encode($value)));
144144

145145
$this->repository->createProperty('test', 'a', 'Alpha');
146146

147147
expect(SettingsProperty::all()->first()->payload)->toEqual('"Nycun"');
148148
});
149149

150-
it('can utilize custom decoders', function() {
151-
config()->set('settings.decoder', fn($payload, $assoc) => json_decode(str_rot13($payload), $assoc));
150+
it('can utilize custom decoders', function () {
151+
config()->set('settings.decoder', fn ($payload, $assoc) => json_decode(str_rot13($payload), $assoc));
152152

153153
$this->repository->createProperty('test', 'a', 'Nycun');
154154

0 commit comments

Comments
 (0)