We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 329865c commit 0b50af0Copy full SHA for 0b50af0
tests/Integration/SpatialTest.php
@@ -66,10 +66,12 @@ public function tearDown()
66
}
67
68
// MySQL 8.0.4 fixed bug #26941370 and bug #88031
69
- private function isMySQL8AfterFix() {
70
- $results = DB::select(DB::raw("select version()"));
71
- $mysql_version = $results[0]->{'version()'};
72
- return (strpos($mysql_version, '8.0.4') !== false);
+ private function isMySQL8AfterFix()
+ {
+ $results = DB::select(DB::raw('select version()'));
+ $mysql_version = $results[0]->{'version()'};
73
+
74
+ return strpos($mysql_version, '8.0.4') !== false;
75
76
77
protected function assertDatabaseHas($table, array $data, $connection = null)
0 commit comments