Skip to content

Commit

Permalink
Merge pull request #86 from gearbox-solutions/fix/issues-triggered-by…
Browse files Browse the repository at this point in the history
…-using-herd-1.11

Minor changes to fix issues caused by Herd 1.11
  • Loading branch information
likeadeckofcards authored Oct 21, 2024
2 parents 8d0fcb5 + ea19c2b commit 7fca854
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/Database/Query/Grammars/FMGrammar.php
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,9 @@ public function getDateFormat()
{
return 'n/j/Y g:i:s A';
}

public function substituteBindingsIntoRawSql($sql, $bindings)
{
return $sql;
}
}
5 changes: 5 additions & 0 deletions src/Services/FileMakerConnection.php
Original file line number Diff line number Diff line change
Expand Up @@ -884,4 +884,9 @@ public function getSchemaBuilder()

return new FMBuilder($this);
}

public function getPdo()
{
return null;
}
}

0 comments on commit 7fca854

Please sign in to comment.