@@ -40,7 +40,7 @@ public function testGroupBy(): void
40
40
41
41
public function testHavingBy (): void
42
42
{
43
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
43
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
44
44
45
45
if ($ isANSISQL ) {
46
46
$ result = $ this ->db ->table ('job ' )
@@ -63,7 +63,7 @@ public function testHavingBy(): void
63
63
64
64
public function testOrHavingBy (): void
65
65
{
66
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
66
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
67
67
68
68
if ($ isANSISQL ) {
69
69
$ result = $ this ->db ->table ('user ' )
@@ -134,7 +134,7 @@ public function testHavingNotIn(): void
134
134
135
135
public function testOrHavingNotIn (): void
136
136
{
137
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
137
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
138
138
139
139
if ($ isANSISQL ) {
140
140
$ result = $ this ->db ->table ('job ' )
@@ -207,7 +207,7 @@ public function testOrHavingLike(): void
207
207
208
208
public function testOrNotHavingLike (): void
209
209
{
210
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
210
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
211
211
212
212
if ($ isANSISQL ) {
213
213
$ result = $ this ->db ->table ('job ' )
@@ -237,7 +237,7 @@ public function testOrNotHavingLike(): void
237
237
238
238
public function testAndHavingGroupStart (): void
239
239
{
240
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
240
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
241
241
242
242
if ($ isANSISQL ) {
243
243
$ result = $ this ->db ->table ('job ' )
@@ -271,7 +271,7 @@ public function testAndHavingGroupStart(): void
271
271
272
272
public function testOrHavingGroupStart (): void
273
273
{
274
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
274
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
275
275
276
276
if ($ isANSISQL ) {
277
277
$ result = $ this ->db ->table ('job ' )
@@ -306,7 +306,7 @@ public function testOrHavingGroupStart(): void
306
306
307
307
public function testNotHavingGroupStart (): void
308
308
{
309
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
309
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
310
310
311
311
if ($ isANSISQL ) {
312
312
$ result = $ this ->db ->table ('job ' )
@@ -340,7 +340,7 @@ public function testNotHavingGroupStart(): void
340
340
341
341
public function testOrNotHavingGroupStart (): void
342
342
{
343
- $ isANSISQL = in_array ( $ this ->db ->DBDriver , [ 'OCI8 ' ], true ) ;
343
+ $ isANSISQL = $ this ->db ->DBDriver === 'OCI8 ' ;
344
344
345
345
if ($ isANSISQL ) {
346
346
$ result = $ this ->db ->table ('job ' )
0 commit comments