You are here

protected function InfoParserDynamic::getRequiredKeys in Drupal 9

Same name and namespace in other branches
  1. 8 core/lib/Drupal/Core/Extension/InfoParserDynamic.php \Drupal\Core\Extension\InfoParserDynamic::getRequiredKeys()

Returns an array of keys required to exist in .info.yml file.

Return value

array An array of required keys.

1 call to InfoParserDynamic::getRequiredKeys()
InfoParserDynamic::parse in core/lib/Drupal/Core/Extension/InfoParserDynamic.php
Parses Drupal module, theme and profile .info.yml files.

File

core/lib/Drupal/Core/Extension/InfoParserDynamic.php, line 139

Class

InfoParserDynamic
Parses dynamic .info.yml files that might change during the page request.

Namespace

Drupal\Core\Extension

Code

protected function getRequiredKeys() {
  return [
    'type',
    'name',
  ];
}