You are here

protected function MissingProjectInfo::getExtensionsTypes in Automatic Updates 8

Get the extension types.

Return value

array The extension types.

1 call to MissingProjectInfo::getExtensionsTypes()
MissingProjectInfo::missingProjectInfoCheck in src/ReadinessChecker/MissingProjectInfo.php
Check for projects missing project info.

File

src/ReadinessChecker/MissingProjectInfo.php, line 89

Class

MissingProjectInfo
Missing project info checker.

Namespace

Drupal\automatic_updates\ReadinessChecker

Code

protected function getExtensionsTypes() {
  return [
    'modules',
    'profiles',
    'themes',
  ];
}