From: Vincent Vanwaelscappel Date: Thu, 19 May 2022 18:19:38 +0000 (+0200) Subject: Revert "wip #4285" X-Git-Url: http://git.cubedesigners.com/?a=commitdiff_plain;h=2c58fc5b7e2a1a675fe49e7c360ce6b500cd52c8;p=cubist_cms-back.git Revert "wip #4285" This reverts commit 09b83b9debeea679de200aa46ad86d83a0f75e05. --- 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; + } }