public static function FileStorage::getFileExtension

Returns the file extension used by the file storage for all configuration files.

Return value

string The file extension.

3 calls to FileStorage::getFileExtension()

File

drupal/core/lib/Drupal/Core/Config/FileStorage.php, line 65
Definition of Drupal\Core\Config\FileStorage.

Class

FileStorage
Defines the file storage controller.

Namespace

Drupal\Core\Config

Code

public static function getFileExtension() {
  return 'yml';
}