Goose\Configuration::addModule PHP Method

addModule() public method

public addModule ( string $category, string $class )
$category string
$class string
    public function addModule($category, $class)
    {
        if ($this->isValidModule($category, $class)) {
            $this->modules[$category][] = $class;
        }
    }