Goose\Configuration::removeModule PHP Method

removeModule() public method

public removeModule ( string $category, string $class )
$category string
$class string
    public function removeModule($category, $class)
    {
        if (isset($this->modules[$category])) {
            $key = array_search($class, $this->modules[$category]);
            if ($key !== false) {
                unset($this->modules[$category][$key]);
            }
        }
    }