You are here

function MockDrupalSystem::moduleInvokeAll in X Autoload 7.5

Parameters

string $hook:

File

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

Class

MockDrupalSystem

Namespace

Drupal\xautoload\Tests\Mock

Code

function moduleInvokeAll($hook) {
  $args = func_get_args();
  call_user_func_array(array(
    $this->components->HookSystem,
    'moduleInvokeAll',
  ), $args);
}