diff --git a/framework/core/src/Http/Controller/ClientView.php b/framework/core/src/Http/Controller/ClientView.php index 77f0d33cc..b5f786b1c 100644 --- a/framework/core/src/Http/Controller/ClientView.php +++ b/framework/core/src/Http/Controller/ClientView.php @@ -346,4 +346,20 @@ class ClientView implements Renderable 'csrfToken' => $session->get('csrf_token') ]; } + + /** + * @return User + */ + public function getActor() + { + return $this->actor; + } + + /** + * @return Request + */ + public function getRequest() + { + return $this->request; + } }