Skip to content

Commit 7fca854

Browse files
Merge pull request #86 from gearbox-solutions/fix/issues-triggered-by-using-herd-1.11
Minor changes to fix issues caused by Herd 1.11
2 parents 8d0fcb5 + ea19c2b commit 7fca854

File tree

2 files changed

+10
-0
lines changed

2 files changed

+10
-0
lines changed

src/Database/Query/Grammars/FMGrammar.php

Lines changed: 5 additions & 0 deletions
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

Lines changed: 5 additions & 0 deletions
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)