function Extension::getName
Same name in this branch
- 11.1.x vendor/mglaman/phpstan-drupal/src/Drupal/Extension.php \mglaman\PHPStanDrupal\Drupal\Extension::getName()
Returns the internal name of the extension.
Return value
string
1 method overrides Extension::getName()
- DatabaseDriver::getName in core/
lib/ Drupal/ Core/ Extension/ DatabaseDriver.php - Returns the internal name of the extension.
File
-
core/
lib/ Drupal/ Core/ Extension/ Extension.php, line 94
Class
- Extension
- Defines an extension (file) object.
Namespace
Drupal\Core\ExtensionCode
public function getName() {
return basename($this->pathname, '.info.yml');
}