From dd5de52a254cb8d0791a56697cf30a946af01f04 Mon Sep 17 00:00:00 2001 From: "a.shamavov" Date: Mon, 3 Mar 2025 10:46:12 +0500 Subject: [PATCH] =?UTF-8?q?feat:=20=D0=94=D0=BE=D0=B1=D0=B0=D0=B2=D0=BB?= =?UTF-8?q?=D0=B5=D0=BD=20=D1=84=D0=B8=D0=BB=D1=8C=D1=82=D1=80=20ILike?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Filter/ILike.php | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/Filter/ILike.php diff --git a/src/Filter/ILike.php b/src/Filter/ILike.php new file mode 100644 index 0000000..2fe7a3e --- /dev/null +++ b/src/Filter/ILike.php @@ -0,0 +1,20 @@ +where( + $this->getColumn() . ' ILIKE \'%' . $this->getHttpValue() . '%\'', + ); + + return $queryBuilder; + } +} -- GitLab