From f05c83ebf242584ac0e5ccff61a3a0c8dc407a63 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Michael=20Vo=C5=99=C3=AD=C5=A1ek?= Date: Mon, 8 May 2023 18:09:45 +0200 Subject: [PATCH] remove two never used/documented Grid methods --- src/Grid.php | 20 -------------------- 1 file changed, 20 deletions(-) diff --git a/src/Grid.php b/src/Grid.php index 3219273a1a..79236f2a58 100644 --- a/src/Grid.php +++ b/src/Grid.php @@ -140,26 +140,6 @@ protected function initTable(): Table return $table; } - /** - * Set Table\Column\Actions seed. - * - * @param array $seed - */ - public function setActionDecorator($seed): void - { - $this->actionButtonsDecorator = $seed; - } - - /** - * Set Table\Column\ActionMenu seed. - * - * @param array $seed - */ - public function setActionMenuDecorator($seed): void - { - $this->actionMenuDecorator = $seed; - } - /** * Add new column to grid. If column with this name already exists, * an. Simply calls Table::addColumn(), so check that method out.