TabbableShimTestController.php in Drupal 10
File
core/modules/system/tests/modules/tabbable_shim_test/src/Controller/TabbableShimTestController.php
View source
<?php
namespace Drupal\tabbable_shim_test\Controller;
use Drupal\Core\Controller\ControllerBase;
class TabbableShimTestController extends ControllerBase {
public function build() {
return [
'container' => [
'#type' => 'container',
'#attributes' => [
'id' => 'tabbable-test-container',
],
],
'#attached' => [
'library' => [
'core/drupal.autocomplete',
],
],
];
}
}