Skip to content

Commit 097b857

Browse files
committed
code style
1 parent a2928a5 commit 097b857

File tree

2 files changed

+7
-12
lines changed

2 files changed

+7
-12
lines changed

src/Query/GrammarWhere.php

+1-6
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,7 @@ public function whereLike(Builder $query, $where): string
5353
$operator = $where['not'] ? 'not ' : '';
5454
$operator .= $where['caseSensitive'] ? 'like' : 'ilike';
5555

56-
return sprintf(
57-
'%s::text %s %s',
58-
$this->wrap($where['column']),
59-
$operator,
60-
$this->parameter($where['value']),
61-
);
56+
return "{$this->wrap($where['column'])}::text {$operator} {$this->parameter($where['value'])}";
6257
}
6358

6459
/**

tests/Query/WhereTest.php

+6-6
Original file line numberDiff line numberDiff line change
@@ -177,15 +177,15 @@ public function testOrWhereNotLike(): void
177177
$this->getConnection()->unprepared('CREATE TABLE example (str text)');
178178

179179
$queries = $this->withQueryLog(function (): void {
180-
$this->getConnection()->table('example')->orWhereNotLike('str', 'ZsbBUJmR')->orWhereNotLike('str', '7Cc1Uf8t')->get();
181-
$this->getConnection()->table('example')->orWhereNotLike('str', 'OamekKIC', true)->orWhereNotLike('str', 'HmC3xURl', true)->get();
180+
$this->getConnection()->table('example')->orWhereNotLike('str', 'AERLFW4s')->orWhereNotLike('str', 'sPtXxruW')->get();
181+
$this->getConnection()->table('example')->orWhereNotLike('str', 'EWnGRRc5', true)->orWhereNotLike('str', 'wihuWcph', true)->get();
182182
});
183183
$this->assertEquals(
184184
['select * from "example" where "str"::text not ilike ? or "str"::text not ilike ?', 'select * from "example" where "str"::text not like ? or "str"::text not like ?'],
185185
array_column($queries, 'query'),
186186
);
187187
$this->assertEquals(
188-
[['ZsbBUJmR', '7Cc1Uf8t'], ['OamekKIC', 'HmC3xURl']],
188+
[['AERLFW4s', 'sPtXxruW'], ['EWnGRRc5', 'wihuWcph']],
189189
array_column($queries, 'bindings'),
190190
);
191191
}
@@ -354,15 +354,15 @@ public function testWhereNotLike(): void
354354
$this->getConnection()->unprepared('CREATE TABLE example (str text)');
355355

356356
$queries = $this->withQueryLog(function (): void {
357-
$this->getConnection()->table('example')->whereNotLike('str', 'UkAymQlg')->get();
358-
$this->getConnection()->table('example')->whereNotLike('str', 'IcuC5Cqz', true)->get();
357+
$this->getConnection()->table('example')->whereNotLike('str', 'mgb7DtKz')->get();
358+
$this->getConnection()->table('example')->whereNotLike('str', 'tpx6Bxpm', true)->get();
359359
});
360360
$this->assertEquals(
361361
['select * from "example" where "str"::text not ilike ?', 'select * from "example" where "str"::text not like ?'],
362362
array_column($queries, 'query'),
363363
);
364364
$this->assertEquals(
365-
[['UkAymQlg'], ['IcuC5Cqz']],
365+
[['mgb7DtKz'], ['tpx6Bxpm']],
366366
array_column($queries, 'bindings'),
367367
);
368368
}

0 commit comments

Comments
 (0)