From d6e46b4d5d44a3f1956953d9fa407efb13a7723e Mon Sep 17 00:00:00 2001 From: Arjay Angeles Date: Wed, 28 Feb 2024 12:55:47 +0800 Subject: [PATCH 1/3] fix: facade return type typo --- src/Facades/DataTables.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Facades/DataTables.php b/src/Facades/DataTables.php index ef2b91e3..7fbf7c72 100644 --- a/src/Facades/DataTables.php +++ b/src/Facades/DataTables.php @@ -7,7 +7,7 @@ /** * @mixin \Yajra\DataTables\DataTables * - * @method static \Yajra\DataTables\EloquentDatatable eloquent($builder) + * @method static \Yajra\DataTables\EloquentDataTable eloquent($builder) * @method static \Yajra\DataTables\QueryDataTable query($builder) * @method static \Yajra\DataTables\CollectionDataTable collection($collection) * From 74421ec981249285c8b5e7ab20faad895afc7d98 Mon Sep 17 00:00:00 2001 From: Arjay Angeles Date: Wed, 28 Feb 2024 12:57:51 +0800 Subject: [PATCH 2/3] chore: remove ignore error --- phpstan.neon.dist | 1 - 1 file changed, 1 deletion(-) diff --git a/phpstan.neon.dist b/phpstan.neon.dist index fc5fd64c..9971e78a 100644 --- a/phpstan.neon.dist +++ b/phpstan.neon.dist @@ -10,7 +10,6 @@ parameters: ignoreErrors: - '#Unsafe usage of new static\(\).#' - - '#Negated boolean expression is always false.#' excludePaths: - src/helper.php From a11dc9cf5ec7f7dc68ad0d5959c5e7aec0af29a5 Mon Sep 17 00:00:00 2001 From: Arjay Angeles Date: Wed, 28 Feb 2024 13:00:23 +0800 Subject: [PATCH 3/3] chore: release v10.11.4 :rocket: --- CHANGELOG.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 52db2a8b..8a5bf9bd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,6 +8,10 @@ ### [Unreleased] +### [v10.11.4] - 2024-02-28 + +- fix: EloquentDataTable return type typo #3123 + ### [v10.11.3] - 2023-12-27 - fix: Update composer.json to use Larastan Org #3107