Skip to content

Commit ea19c2b

Browse files
Minor changes to fix issues caused by Herd 1.11
1 parent 8d0fcb5 commit ea19c2b

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/Database/Query/Grammars/FMGrammar.php

+5
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,9 @@ public function getDateFormat()
1515
{
1616
return 'n/j/Y g:i:s A';
1717
}
18+
19+
public function substituteBindingsIntoRawSql($sql, $bindings)
20+
{
21+
return $sql;
22+
}
1823
}

src/Services/FileMakerConnection.php

+5
Original file line numberDiff line numberDiff line change
@@ -884,4 +884,9 @@ public function getSchemaBuilder()
884884

885885
return new FMBuilder($this);
886886
}
887+
888+
public function getPdo()
889+
{
890+
return null;
891+
}
887892
}

0 commit comments

Comments
 (0)