Skip to content

Commit ded4e2d

Browse files
committed
bot: fix cs [skip ci]
1 parent 7de7c02 commit ded4e2d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/Browser/Json.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ public function decoded()
167167
return $this->decoded;
168168
}
169169

170-
if ('' === trim($this->source)) {
170+
if ('' === \trim($this->source)) {
171171
return null;
172172
}
173173

tests/JsonTest.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -125,8 +125,8 @@ public function scalarChildAssertionProvider(): iterable
125125
{
126126
yield ['{"foo":{"bar":"baz"}}', 'noop', function(Json $json) {$json->isNull(); }];
127127
yield ['{"foo":{"bar":"baz"}}', 'foo.bar', function(Json $json) {$json->isNotEmpty()->equals('baz'); }];
128-
yield ['{"hydra:totalItems":0}', '"hydra:totalItems"', function(Json $json) {$json->is(0);}];
129-
yield ['{"hydra":{"totalItems":0}}', 'hydra.totalItems', function(Json $json) {$json->is(0);}];
128+
yield ['{"hydra:totalItems":0}', '"hydra:totalItems"', function(Json $json) {$json->is(0); }];
129+
yield ['{"hydra":{"totalItems":0}}', 'hydra.totalItems', function(Json $json) {$json->is(0); }];
130130
}
131131

132132
/**

0 commit comments

Comments
 (0)