Files
pcm-badge-bundle/config/definition.php

17 lines
491 B
PHP

<?php
declare(strict_types=1);
use Symfony\Component\Config\Definition\Configurator\DefinitionConfigurator;
// This file is imported and used by the main bundle class to
// define how the configuration should look.
return static function (DefinitionConfigurator $definition): void {
$definition->rootNode()
->children()
->scalarNode('base_classes')->defaultValue('text-center rounded max-w-max text-xs px-2 py-1 border min-w-max')->end()
->end()
;
};