container = StaticContainer::getContainer(); } /** * Sets a configuration to the Matomo config file * * @param string $section * @param string $key * @param scalar|scalar[] $value * @return Set */ public function set($section, $key, $value) { return $this->container->make('Piwik\Updater\Migration\Config\Set', array( 'section' => $section, 'key' => $key, 'value' => $value, )); } }