autoupdate-8.x-1.x-dev/src/ModuleManagerInterface.php
src/ModuleManagerInterface.php
<?php
namespace Drupal\autoupdate;
/**
* Provides and interface for ModuleManager.
*/
interface ModuleManagerInterface {
public function getModules($installed = TRUE);
public function getUpdates($security_only = FALSE, $force_check = FALSE);
}
