]> _ Git - cubist_cms-back.git/commitdiff
Revert "wip #4285"
authorVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 19 May 2022 18:19:38 +0000 (20:19 +0200)
committerVincent Vanwaelscappel <vincent@cubedesigners.com>
Thu, 19 May 2022 18:19:38 +0000 (20:19 +0200)
This reverts commit 09b83b9debeea679de200aa46ad86d83a0f75e05.

src/app/Application.php

index d2fd6abdbc1ad2e8210ad85fb5a803f20a5683dd..27a0caa12b3e79aeb56e90cb06ddd844eee18fb2 100644 (file)
@@ -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;
+    }
 }