ExtensionType.php
Same filename in this branch
Same filename in other branches
Namespace
Drupal\sdcFile
-
core/
modules/ sdc/ src/ ExtensionType.php
View source
<?php
namespace Drupal\sdc;
/**
* Enum for supported extension types.
*
* @todo Replace this enum with Drupal\Core\Extension\ExtensionTypeInterface.
* @see https://www.drupal.org/i/3352546
*
* @internal
*/
enum ExtensionType : string
{
case Module = 'module';
case Theme = 'theme';
}
Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.