Skip to content
Snippets Groups Projects

added doc comments

Closed Priya Degwekar requested to merge issue/library_generator-3371734:1.x into 1.x
1 file
+ 9
1
Compare changes
  • Side-by-side
  • Inline
+ 9
1
<?php
/**
* @file
* library_generator module file.
*/
/**
* Implements hook_library_info_alter().
*/
function library_generator_library_info_alter(&$libraries, $extension) {
$generated_libraries = \Drupal::service('library_generator.discovery')->getLibrariesByExtension($extension);
$libraries = array_merge($generated_libraries, $libraries);
}
}
\ No newline at end of file
Loading