From 2c58fc5b7e2a1a675fe49e7c360ce6b500cd52c8 Mon Sep 17 00:00:00 2001 From: Vincent Vanwaelscappel Date: Thu, 19 May 2022 20:19:38 +0200 Subject: [PATCH] Revert "wip #4285" This reverts commit 09b83b9debeea679de200aa46ad86d83a0f75e05. --- src/app/Application.php | 17 +++++++++++++++++ 1 file changed, 17 insertions(+) diff --git a/src/app/Application.php b/src/app/Application.php index d2fd6ab..27a0caa 100644 --- a/src/app/Application.php +++ b/src/app/Application.php @@ -47,4 +47,21 @@ class Application extends \Illuminate\Foundation\Application { return $this->variant; } + + + /** + * @param CrudPanel $crud + */ + public function setCrud(?CrudPanel $crud): void + { + $this->crud = $crud; + } + + /** + * @return CrudPanel + */ + public function getCrud(): ?CrudPanel + { + return $this->crud; + } } -- 2.39.5