From ea09a1596335c93b38e6868937cb07356c526fea Mon Sep 17 00:00:00 2001 From: Christopher Vagnetoft Date: Wed, 2 Nov 2016 13:57:12 +0100 Subject: [PATCH] Ooops, bugfix. --- lib/Context.php | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/lib/Context.php b/lib/Context.php index f6ca350..e1dd132 100644 --- a/lib/Context.php +++ b/lib/Context.php @@ -23,6 +23,16 @@ class Context $this->configure(); } + public function setShell(Shell $shell) + { + $this->shell = $shell; + } + + public function getShell() + { + return $this->shell; + } + public function setParent(Context $parent=null) { $this->parent = $parent;