summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorxGrz <grzesiek.byskiniewicz@gmail.com>2025-10-13 10:05:37 +0200
committerxGrz <grzesiek.byskiniewicz@gmail.com>2025-10-13 10:05:37 +0200
commit89360dad9bc1b315d73f383bb5a2d6ee3fc2a7ed (patch)
treeec393c25cbc0e101e2fe05971f8d0105766c1d9d /src
parentb4cabe6ab7817097cf811d69dbf25ed3cd0a40a9 (diff)
downloadilluminate-firebird-89360dad9bc1b315d73f383bb5a2d6ee3fc2a7ed.tar.gz
illuminate-firebird-89360dad9bc1b315d73f383bb5a2d6ee3fc2a7ed.tar.bz2
illuminate-firebird-89360dad9bc1b315d73f383bb5a2d6ee3fc2a7ed.zip
[fix] Warning message for null values.
Diffstat (limited to 'src')
-rwxr-xr-xsrc/Query/Builder.php2
-rwxr-xr-xsrc/Query/Grammars/FirebirdGrammar.php2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/Query/Builder.php b/src/Query/Builder.php
index c91c6bd..cda4f1f 100755
--- a/src/Query/Builder.php
+++ b/src/Query/Builder.php
@@ -42,7 +42,7 @@ class Builder extends QueryBuilder
{
// detect is not search
if (! str($operator)->contains('like', true)) {
- return parent::where($column, $operator, $value, $boolean); // TODO: Change the autogenerated stub
+ return parent::where($column, $operator, $value, $boolean);
}
// when is search covert to upper case column and value at database level
diff --git a/src/Query/Grammars/FirebirdGrammar.php b/src/Query/Grammars/FirebirdGrammar.php
index c8b5535..2ee0d26 100755
--- a/src/Query/Grammars/FirebirdGrammar.php
+++ b/src/Query/Grammars/FirebirdGrammar.php
@@ -146,7 +146,7 @@ class FirebirdGrammar extends Grammar
* @param array $values
* @return string
*/
- public function compileProcedure(Builder $query, $procedure, array $values = null)
+ public function compileProcedure(Builder $query, $procedure, ?array $values = null)
{
$procedure = $this->wrap($procedure);