diff options
| author | xGrz <grzesiek.byskiniewicz@gmail.com> | 2025-10-13 10:05:37 +0200 |
|---|---|---|
| committer | xGrz <grzesiek.byskiniewicz@gmail.com> | 2025-10-13 10:05:37 +0200 |
| commit | 89360dad9bc1b315d73f383bb5a2d6ee3fc2a7ed (patch) | |
| tree | ec393c25cbc0e101e2fe05971f8d0105766c1d9d /src | |
| parent | b4cabe6ab7817097cf811d69dbf25ed3cd0a40a9 (diff) | |
| download | illuminate-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-x | src/Query/Builder.php | 2 | ||||
| -rwxr-xr-x | src/Query/Grammars/FirebirdGrammar.php | 2 |
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); |
