Ooops, bugfix.

This commit is contained in:
Chris 2016-11-02 13:57:12 +01:00
parent fe27eeb4a3
commit ea09a15963
1 changed files with 10 additions and 0 deletions

View File

@ -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;