You are here

public function MockDrupalSystem::installSetModuleWeight in X Autoload 7.5

Called from xautoload_install() to set the module weight.

Parameters

int $weight: New module weight for xautoload.

Overrides DrupalSystemInterface::installSetModuleWeight

File

tests/src/Mock/MockDrupalSystem.php, line 198

Class

MockDrupalSystem

Namespace

Drupal\xautoload\Tests\Mock

Code

public function installSetModuleWeight($weight) {
  $this->components->SystemTable
    ->moduleSetWeight('xautoload', $weight);
  $this->components->SystemListReset
    ->systemListReset();
}