Skip to content
Snippets Groups Projects

Improve docblocks

Merged Pierre Rudloff requested to merge issue/importmap-3510810:3510810-improve-comments into 1.x
+ 11
3
<?php
/**
* @file
* Hooks for the importmap module.
*/
use Drupal\Component\Serialization\Json;
use Drupal\Core\Render\BubbleableMetadata;
use Drupal\Core\Url;
/**
* @return array
* @see \Drupal\libraries_ui\LibrariesUiService::getAllLibraries()
* Get a list of libraries declared by core, modules and themes.
*
* @return mixed[][]
* List of libraries.
*
* @see \Drupal\libraries_ui\LibrariesUiService::getAllLibraries()
* @noinspection PhpUndefinedNamespaceInspection
* @phpstan-return mixed[][]
*/
function _importmap_get_libraries(): array {
/** @var \Drupal\Core\Asset\LibraryDiscoveryInterface $libraryDiscovery */
Loading