fix methods names

This commit is contained in:
Kavalar 2024-08-02 12:06:57 +03:00
parent 2c1db8573c
commit 6d5f6a8665

View File

@ -119,7 +119,7 @@ class ListJsonTable
foreach ($row as $key => $ceil) { foreach ($row as $key => $ceil) {
if ($this->issetColumn($key) and $this->is_fillable($key)) { if ($this->issetColumn($key) and $this->is_fillable($key)) {
if($this->beforePrintCell) { if($this->beforePrintCell) {
$ceil = $this->setCustomHandler($this->beforePrintCell, $key, $ceil); $ceil = $this->getCustomCeil($key, $ceil);
} }
$this->html .= "<td>" . $ceil . "</td>"; $this->html .= "<td>" . $ceil . "</td>";
} }
@ -311,9 +311,9 @@ class ListJsonTable
} }
} }
public function setCustomHandler(Closure|array $handler, string $key, string $ceil) public function getCustomCeil(string $key, string $ceil)
{ {
if (is_array($handler)) { if (is_array($this->beforePrintCell)) {
foreach ($this->beforePrintCell as $column => $closure) { foreach ($this->beforePrintCell as $column => $closure) {
if ($key == $column) { if ($key == $column) {
$hook = $closure; $hook = $closure;
@ -324,7 +324,7 @@ class ListJsonTable
$hook = $this->beforePrintCell; $hook = $this->beforePrintCell;
$ceil = $hook($key, $ceil); $ceil = $hook($key, $ceil);
} }
return $ceil;
return $ceil;
} }
} }