Skip to content

Commit ef9566a

Browse files
carlsverregithub-actions[bot]
authored andcommitted
Fix code styling
1 parent c7cf4ca commit ef9566a

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

tests/Hybrid/Json/JsonWhereTest.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ public function singlestore_will_cast_all_types()
3131
$query3 = DB::table('test')->where('data->value1->value2', 1.5);
3232
$query4 = DB::table('test')->where('data->value1->value2', json_encode(['a' => 'b']));
3333

34-
if (!$this->runHybridIntegrations()) {
34+
if (! $this->runHybridIntegrations()) {
3535
return;
3636
}
3737

@@ -71,7 +71,7 @@ public function json_boolean()
7171
$query2->toSql()
7272
);
7373

74-
if (!$this->runHybridIntegrations()) {
74+
if (! $this->runHybridIntegrations()) {
7575
return;
7676
}
7777

@@ -113,7 +113,7 @@ public function where_null()
113113
$query->toSql()
114114
);
115115

116-
if (!$this->runHybridIntegrations()) {
116+
if (! $this->runHybridIntegrations()) {
117117
return;
118118
}
119119

@@ -139,7 +139,7 @@ public function where_not_null()
139139
$query->toSql()
140140
);
141141

142-
if (!$this->runHybridIntegrations()) {
142+
if (! $this->runHybridIntegrations()) {
143143
return;
144144
}
145145

tests/Hybrid/TransactionsTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ protected function setUp(): void
2424
/** @test */
2525
public function multipleBegin()
2626
{
27-
if (!$this->runHybridIntegrations()) {
27+
if (! $this->runHybridIntegrations()) {
2828
return;
2929
}
3030

0 commit comments

Comments
 (0)